我有一个WPF窗口,在xaml中定义了两个Window资源:
<Window.Resources>
<cs:MyDataProvider endpoint="ep1" x:Key="datactx1"/>
<cs:MyDataProvider endpoint="ep2" x:Key="datactx2"/>
</Window.Resources>
MyDataProvider是一个简单的类,如:
public class MyDataProvider
{
[...]
}
所以,我的问题:
有没有办法通过拖放来添加MyDataProvider对象 工具箱(或从其他地方)并自动将其添加到Window.Resources?