Mini8Config.xaml.cs 514 B

12345678910111213141516171819
  1. namespace HistoryView.Controls;
  2. public partial class Mini8Config : UserControl
  3. {
  4. public Mini8Config()
  5. {
  6. InitializeComponent();
  7. }
  8. public TempConfigSubMini8 Source
  9. {
  10. get { return (TempConfigSubMini8)GetValue(SourceProperty); }
  11. set { SetValue(SourceProperty, value); }
  12. }
  13. public static readonly DependencyProperty SourceProperty =
  14. DependencyProperty.Register("Source", typeof(TempConfigSubMini8), typeof(Mini8Config), new PropertyMetadata(default));
  15. }