mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
18 lines
732 B
Plaintext
18 lines
732 B
Plaintext
//public static global::System.Workflow.ComponentModel.DependencyProperty MyPropertyProperty = DependencyProperty.Register("MyProperty", typeof(string), typeof(Window1));
|
|
|
|
//[System.ComponentModel.DescriptionAttribute("MyProperty")]
|
|
//[System.ComponentModel.CategoryAttribute("MyProperty Category")]
|
|
//[System.ComponentModel.BrowsableAttribute(true)]
|
|
//[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Visible)]
|
|
//public string MyProperty
|
|
//{
|
|
// get
|
|
// {
|
|
// return ((string)(base.GetValue(Window1.MyPropertyProperty)));
|
|
// }
|
|
// set
|
|
// {
|
|
// base.SetValue(Window1.MyPropertyProperty, value);
|
|
// }
|
|
//}
|