12345678910111213141516171819202122232425 |
- using System.Windows;
- using System.Windows.Controls;
- namespace athosThemes.UserControls
- {
- /// <summary>
- /// FoupControl.xaml 的交互逻辑
- /// </summary>
- public partial class FoupControl : UserControl
- {
- public FoupControl()
- {
- InitializeComponent();
- }
- public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register("RotateTransformValue", typeof(int), typeof(FoupControl));
- public int RotateTransformValue
- {
- get { return (int)this.GetValue(RotateTransformValueProperty); }
- set { this.SetValue(RotateTransformValueProperty, value); }
- }
- }
- }
|