protected override void CreateChildElements() { base.CreateChildElements(); base.CommandArea = new WizardCommandArea(); this.Children.Add(base.CommandArea); this.topElement = new WizardAeroTopElement(); this.Children.Add(this.topElement); }
protected override void CreateChildElements() { base.CreateChildElements(); this.CommandArea = new WizardCommandArea(); this.Children.Add((RadElement)this.CommandArea); this.topElement = new WizardAeroTopElement(); this.Children.Add((RadElement)this.topElement); this.BackButton.Click += new EventHandler(this.UpdateButtonFocus); this.NextButton.Click += new EventHandler(this.UpdateButtonFocus); this.CancelButton.Click += new EventHandler(this.UpdateButtonFocus); this.FinishButton.Click += new EventHandler(this.UpdateButtonFocus); }
internal void ApplyThemeStyles() { if (this.IsDesignMode) { return; } int num1 = (int)this.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local); int num2 = (int)this.ResetValue(RadElement.BackgroundShapeProperty, ValueResetFlags.Local); WizardAeroTopElement topElement = (this.Owner.View as WizardAeroView).TopElement; int num3 = (int)topElement.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local); int num4 = (int)topElement.ResetValue(RadElement.BackgroundShapeProperty, ValueResetFlags.Local); }
internal void UnapplyThemeStyles() { if (this.IsDesignMode) { return; } this.DrawFill = false; this.BackgroundShape = (RadImageShape)null; WizardAeroTopElement topElement = (this.Owner.View as WizardAeroView).TopElement; topElement.DrawFill = false; topElement.BackgroundShape = (RadImageShape)null; }
internal void ApplyThemeStyles() { if (this.IsDesignMode) { return; } this.ResetValue(DrawFillProperty, ValueResetFlags.Local); this.ResetValue(BackgroundShapeProperty, ValueResetFlags.Local); WizardAeroTopElement topElement = (this.Owner.View as WizardAeroView).TopElement; topElement.ResetValue(DrawFillProperty, ValueResetFlags.Local); topElement.ResetValue(BackgroundShapeProperty, ValueResetFlags.Local); }