Я использую код веб-сайтов для справки, но то, что я пытаюсь сделать, не работает. Свойство поддержки никогда не меняется ... Я не знаю, неправильно ли то, что я ожидаю ...
public class QuestionTemplateSelector : UserControl
{
public DataTemplate TemplateString { get; set; }
public DataTemplate TemplateBoolean { get; set; }
public DataTemplate TemplateSingleMultipleChoice { get; set; }
public DataTemplate TemplateAnyMultipleChoice { get; set; }
/// <summary>
/// The <see cref="QuestionType" /> dependency property's name.
/// </summary>
public const string QuestionTypePropertyName = "QuestionType";
/// <summary>
/// Gets or sets the value of the <see cref="QuestionType" />
/// property. This is a dependency property.
/// </summary>
public string QuestionType
{
get
{
return (string)GetValue(QuestionTypeProperty);
}
set
{
SetValue(QuestionTypeProperty, value);
}
}
/// <summary>
/// Identifies the <see cref="QuestionType" /> dependency property.
/// </summary>
public static readonly DependencyProperty QuestionTypeProperty = DependencyProperty.Register(
QuestionTypePropertyName,
typeof(string),
typeof(QuestionTemplateSelector), new PropertyMetadata(QuestionTypeChangedCallBack));
private static void QuestionTypeChangedCallBack(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
Debug.WriteLine(string.Format("Old Value: {1}{0}New Value: {2}", " - ", e.OldValue, e.NewValue));
}
public QuestionTemplateSelector():base()
{
Loaded += new RoutedEventHandler(OnLoaded);
}
private void OnLoaded(object sender, RoutedEventArgs e)
{
string questiontype = QuestionType;
Debug.WriteLine(sender);
if (questiontype == "Boolean")
{
Content = TemplateBoolean.LoadContent() as UIElement;
}
else if (questiontype == "Free Text")
{
Content = TemplateString.LoadContent() as UIElement;
}
else if (questiontype == "Single Multiple Choice")
{
Content = TemplateSingleMultipleChoice.LoadContent() as UIElement;
}
else if (questiontype == "Any Multiple Choice")
{
Content = TemplateAnyMultipleChoice.LoadContent() as UIElement;
}
else
{
Content = null;
}
}//onLoaded
}//QuestionTemplateSelector
У меня такое ощущение, что это связано с загруженным. Я действительно нуждаюсь в коде в Callback, но поскольку он статический, я не могу получить доступ к нужным мне методам экземпляра. Как мне поступить? Я могу опубликовать больше кода, если вам нужно.
public QuestionTemplateSelector():base()
{
Loaded += new RoutedEventHandler(OnLoaded);
}
private void OnLoaded(object sender, RoutedEventArgs e)
{
string questiontype = QuestionType;
Debug.WriteLine(sender);
if (questiontype == "Boolean")
{
Content = TemplateBoolean.LoadContent() as UIElement;
}
else if (questiontype == "Free Text")
{
Content = TemplateString.LoadContent() as UIElement;
}
else if (questiontype == "Single Multiple Choice")
{
Content = TemplateSingleMultipleChoice.LoadContent() as UIElement;
}
else if (questiontype == "Any Multiple Choice")
{
Content = TemplateAnyMultipleChoice.LoadContent() as UIElement;
}
else
{
Content = null;
}
}//onLoaded
Я могу убедиться, что код фактически изменяется в обратном вызове, но свойство CLR, похоже, никогда не обновляется.