Interaction logic for PropertyEntryCategory.xaml
Inheritance: UserControl
Exemplo n.º 1
0
 public override void Dispose()
 {
     base.Children.Remove(CategoryControl);
     CategoryControl = null;
 }
Exemplo n.º 2
0
 public PropertyEntryControlHeader(string HeaderText) : base()
 {
     CategoryControl = new PropertyEntryCategory();
     CategoryControl.NameLabel.Text = HeaderText;
     base.Children.Add(CategoryControl);
 }