以下のコードを再度実行する前に、"Status" DependencyProperty が登録されているかどうかを確認するにはどうすればよいですか?
コード:
public readonly DependencyProperty StatusProperty ;
public string Status
{
get { return (string)GetValue(StatusProperty); }
set { SetValue(StatusProperty, value); }
}
StatusProperty = DependencyProperty.Register("Status", typeof(string), typeof(CWindow), new PropertyMetadata());