我是wpf的新手。我正在写一个日历控件。我在Generic.xaml中定义了一个默认模板。所有日期都填充在列表框中。由于列表框是在模板中定义的,我使用FindName()来访问控件。问题是我无法在构造函数中调用填充列表框的方法,因为它正在访问模板控件(我认为当时没有初始化。这是填充的代码
private void DisplayCurrentMonthContents()
{
int daysInMonth = DateTime.DaysInMonth(DateTime.Now.Year, CurrentMonth);
TextBlock CurrentMonthTextBlock = GetTextBlock();
ListBox DateListBox = (ListBox)Template.FindName("PART_ListBox", this);
CurrentMonthTextBlock.Text = CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(CurrentMonth);
DateListBox.Items.Clear();
for (int counter = 1; counter != daysInMonth; counter++)
{
DateListBox.Items.Add(counter);
}
}
我相信我正在以错误的方式接近它。如何使用默认值填充模板中使用的控件?
答案 0 :(得分:0)
没关系。我得到了解决方案。不要使用构造函数。而是覆盖OnApplyTemplate()
干杯。