Private Sub Login_Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.BackColor = Color.Silver
ThemeResolutionService.ApplicationThemeName =
"Aqua"
End Sub
the backcolor doesn't change. it stays white all the time. how do i do this? please hlep thank you
if
(_local)
{
radGridView1.Columns[
"colFirstSeen"].IsVisible = true;
radGridView1.Columns[
"colTrust"].IsVisible = true;
radGridView1.Columns["colAcknowledged"].IsVisible = true;;
}
else
{
radGridView1.Columns[
"colFirstSeen"].IsVisible = false
radGridView1.Columns["colFirstSeen"].VisibleInColumnChooser = false
radGridView1.Columns["colTrust"].IsVisible = false
radGridView1.Columns[
"colAcknowledged"].IsVisible = false
Sorry, when I save the poste it changes the fomat.
private
void
btnView_Click(
object
sender, EventArgs e)
{
if
(pvChecklist.ViewMode == PageViewMode.Stack)
pvChecklist.ViewMode = PageViewMode.Strip;
if
(pvChecklist.ViewMode == PageViewMode.Strip)
pvChecklist.ViewMode = PageViewMode.ExplorerBar;
if
(pvChecklist.ViewMode == PageViewMode.ExplorerBar)
pvChecklist.ViewMode = PageViewMode.Stack;
}
Good morning.
I'm studying your demos for RadCarousel, in particular the "First Look" one, and I want to intercept the double click event on an item. I don't know how to do it, as the item hasn't the double click event wired to it. How can I solve this problem?
Thank you
Gianfranco Pesenato