MatrixRadioControl.xaml.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. namespace Compdfkit_Tools.Common
  16. {
  17. /// <summary>
  18. /// Interaction logic for MetrixRadioControl.xaml
  19. /// </summary>
  20. public partial class MatrixRadioControl : UserControl
  21. {
  22. public int SelectedTag
  23. {
  24. get { return (int)GetValue(SelectedTagProperty); }
  25. set { SetValue(SelectedTagProperty, value); }
  26. }
  27. public static readonly DependencyProperty SelectedTagProperty =
  28. DependencyProperty.Register("SelectedTag", typeof(int), typeof(MatrixRadioControl), new PropertyMetadata(4));
  29. public MatrixRadioControl()
  30. {
  31. DataContext = this;
  32. InitializeComponent();
  33. }
  34. }
  35. }