Skip to content

Instantly share code, notes, and snippets.

@atzimler
Last active May 17, 2017 11:02
Show Gist options
  • Select an option

  • Save atzimler/b677a4178712dbafd431bf4c066ec14d to your computer and use it in GitHub Desktop.

Select an option

Save atzimler/b677a4178712dbafd431bf4c066ec14d to your computer and use it in GitHub Desktop.
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