FoupControl.xaml.cs 700 B

12345678910111213141516171819202122232425
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. namespace athosThemes.UserControls
  4. {
  5. /// <summary>
  6. /// FoupControl.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class FoupControl : UserControl
  9. {
  10. public FoupControl()
  11. {
  12. InitializeComponent();
  13. }
  14. public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register("RotateTransformValue", typeof(int), typeof(FoupControl));
  15. public int RotateTransformValue
  16. {
  17. get { return (int)this.GetValue(RotateTransformValueProperty); }
  18. set { this.SetValue(RotateTransformValueProperty, value); }
  19. }
  20. }
  21. }