or
| RadLabel label1 = new RadLabel(); label1.Text = "Ann's Birthday"; |
| RadHostItem host = new RadHostItem(label1); |
| radCalendar1.SpecialDays[0].TemplateItem = host; |
Hello i asked you a question yesturday and i didnt recive an answer
and if i may i have another question how can i change the color of the gridlines
hanan
the questions are about wpf
best regards
hanan
| private void radGridView1_CellBeginEdit(object sender, GridViewCellCancelEventArgs e) |
| { |
| RadTextBoxEditor editor = radGridView1.ActiveEditor as RadTextBoxEditor; |
| editor.AcceptsReturn = true; |
| editor.AcceptsTab = true; |
| } |
| Private Sub RGVContacts_RowFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.RowFormattingEventArgs) Handles RGVContacts.RowFormatting |
| If e.RowElement.IsOdd Then |
| e.RowElement.BackColor = Color.Moccasin |
| Else |
| e.RowElement.BackColor = Color.FloralWhite |
| End If |
| e.RowElement.DrawFill = True |
| End Sub |