Last active
May 17, 2017 11:02
-
-
Save atzimler/b677a4178712dbafd431bf4c066ec14d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static DependencyProperty LabelDataProperty = DependencyProperty.Register(nameof(LabelData), typeof(string), typeof(MainWindow), new PropertyMetadata("Old Label Value")); | |
| public string LabelData | |
| { | |
| get { return (string)GetValue(LabelDataProperty); } | |
| set { SetValue(LabelDataProperty, value); } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment