1
Answer

winform appearance

zhebincong

zhebincong

20y
2.3k
1
hello i am a java programmer,when develop the java winform,i can select different styles by modifying the "lookandfeel" attribute,but i found the c# language don't provide such function,all the applications written by c# have the same window style,but real world application,such as officexp and office2003,have the different appearance,why?how can i choose the winForm appearance of my app by using c#? thank you!!
Answers (1)
0
Mohammed Ismail

Mohammed Ismail

NA 3 0 18y
Hi Kavita:

For your second question removing of previous and next month days:  you can not remove them but you can hide them by setting those days back and forecolors using OtherMonthDayStyle attribute of Calendar.

Eg: <OtherMonthDayStyle ForeColor="Blue" BorderStyle="None" BorderColor="Blue" BackColor="Blue"></OtherMonthDayStyle>


But those cells are selectable in order to suppress this, add this in DayRender event of calendar:

if (e.Day.IsOtherMonth==true)
   {
    e.Cell.BackColor = System.Drawing.Color.Blue;
    e.Cell.ForeColor = System.Drawing.Color.Blue;
    e.Day.IsSelectable = false;
  }


in Page_Load event add this:

Calendar1.Attributes["onMouseDown"] = "JavaScript:Void(0);";

try out this.