Beispiel #1
0
 public BeautyFormAbout(AssemblyInfo assemblyInfo, BeautyTheme theme)
     : base(theme)
 {
     InitializeComponent();
     this.AssemblyInfo = assemblyInfo;
     Initialize();
 }
Beispiel #2
0
 private void BeautyGrid_ParentChanged(object sender, EventArgs e)
 {
     if (this._theme == null)
     {
         Form form = this.FindForm();
         if (form.GetType() == typeof(BeautyForm))
         {
             this._theme = ((BeautyForm)form).Theme;
         }
     }
 }
Beispiel #3
0
 public BeautyForm(BeautyTheme theme)
 {
     InitializeComponent();
     this.Theme = theme;
 }
Beispiel #4
0
 public BeautyFormAbout(BeautyTheme theme)
     : base(theme)
 {
     init(null);
 }
Beispiel #5
0
 public BeautyFormAbout(Assembly assembly, BeautyTheme theme)
     : base(theme)
 {
     init(assembly);
 }