using System.Windows; using System.Windows.Controls; namespace athosThemes.UserControls { /// /// FoupControl.xaml 的交互逻辑 /// 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); } } } }