or
I like to have the caret shown when the RichTextBox gets the focus, i.e., when tabbing into it. I use the following approach.
Private Sub RadRichTextBox_GotFocus(sender As Object, e As System.EventArgs) Handles RadRichTextBox.GotFocus
Me.RadRichTextBox.Document.Insert("", RadRichTextBox.CurrentEditingStyle)
End Sub
public
RadForm1()
{
InitializeComponent();
ThemeResolutionService.LoadPackageFile(@
"C:\Users\mamatjan\Desktop\xxxxxxxxxxxxxxxxxxxx\xx\MyTheme5.tssp"
);
ThemeResolutionService.ApplicationThemeName =
"MyTheme5"
;
}
but when I'm run it. the button not use the style what I'm change, Until the mouse over the button, and button text margin is change.
why? and how I'm fixed it?(I just use font, and the font not change too)