使用依赖项属性传递回调方法
本文关键字:回调 方法 属性 依赖 | 更新日期: 2023-09-27 17:57:11
我正在使用Jarloo的日历控件来在我的WPF软件中显示日历。为了满足我的需求,我补充说,每天包含一个项目列表,比如说List<Item> Items
。
Jarloo日历是我的主要视觉工作室解决方案中的第二个项目。我以这种方式使用此控件:
<Jarloo:Calendar DayChangedCallback="{Binding DayChangedEventHandler}"/>
如您所见,我希望可以将一个方法从我的主项目传递到日历的项目,以便我可以在日历的构造函数中将该方法添加为 DayChanged 事件的事件处理程序。
但是,通过依赖项接收的项为空...
在日历代码中,我的依赖项属性定义为:
public static readonly DependencyProperty DayChangedCallbackProperty = DependencyProperty.Register("DayChangedCallback", typeof(EventHandler<DayChangedEventArgs>), typeof(Calendar));
我的"DayChangedEventHandler"定义为
public EventHandler<DayChangedEventArgs> DayChangedHandler { get; set; }
void DayChanged(object o, DayChangedEventArgs e)
{
}
// i set this way the DayChangedHandler property so that I can bind on it from the view
DayChangedHandler = new EventHandler<DayChangedEventArgs>(DayChanged);
有人对我有提示吗?
非常感谢:).x
以下是有关非静态字段问题的示例:
public partial class MainWindow : Window
{
public bool IsChecked
{
get { return (bool)GetValue(IsCheckedProperty); }
set { SetValue(IsCheckedProperty, value); }
}
// Using a DependencyProperty as the backing store for IsChecked. This enables animation, styling, binding, etc...
public static readonly DependencyProperty IsCheckedProperty =
DependencyProperty.Register("IsChecked", typeof(bool), typeof(MainWindow), new PropertyMetadata(false, new PropertyChangedCallback(PropertyChanged)));
private static void PropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
MainWindow localWindow = (MainWindow)obj;
Console.WriteLine(localWindow.TestString);
}
public string TestString { get; set; }
public MainWindow()
{
InitializeComponent();
TestString = "test";
this.DataContext = this;
}
}
下面是用于测试它的 XAML:
<CheckBox Content="Case Sensitive" IsChecked="{Binding IsChecked}"/>
更改属性时,将调用回调,在示例中,可以访问非静态 TestString 属性。