English 中文(简体)
如何在银灯儿童用户控制下 订阅活动?
原标题:How to subscribe to an event in a child usercontrol in Silverlight?

我有一个用户控制器(MyUC),

在 MyUC I 中,将数据框架设置为像这样的视觉模型:

    private void UserControl_Loaded(object sender, RoutedEventArgs e)
    {
        DataContext = new MyUCViewModel();
    }

在我的观点模型(MyUCViewModel)中,

    public MyDataItemCollection MyDataItems { get; private set; }

在建筑师身上,我有:

    public MyUCViewModel()
    {
        this.MyDataItems = new MyDataItemCollection();
        this.MyDataItems.ChosenItems.CollectionChanged += new NotifyCollectionChangedEventHandler(ChosenItemsChanged);

        this.MyDataItems.Add(new DataItem());
    }

从上面的 MyDataTrojects 中还有另一组天选项目收藏,

我代码中的其他部分从天选项目收藏中添加并删除,

接下来,我在视觉模型中 有了事件处理方法:

    private void ChosenItemsChanged(object sender, EventArgs e)
    {
        MessageBox.Show("Chosen Items Changed");
    }

用户每次更改影响天选项目收藏的UI时, 我都会收到一个信息框。

我现在想弄明白的部分是 我如何设置它, 以便我的主页在用户控制中 被选中的项目改变的事件火灾发生时 做点什么。 我想做的是通过在页面上生成的 MyUC 控制, 使每个用户控制都称为一种方法, 来连接主页环 。

问题回答

您可以在主页中添加更多事件听众 :

MyUCViewModel viewModel = myUC.DataContext;
viewModel.MyDataItems.ChosenItems.CollectionChanged 
  += new NotifyCollectionChangedEventHandler(MainPage_ChosenItemsChanged);

这是基于评论,因为问题有点误导:

虽然您的问题似乎不是严格意义上的 MVVM, 但您应该写下您的用户控制器, 仿佛它是第三方控制器一样, 并简单地在它上披露自定义事件。 用户控制器应该总是带有公共界面的黑盒。 对于自足( 如许多人一样) MVVM 的可重复使用的控制器来说, 它是超效的 。

e.g.

在您的用户控件中添加 :

公共事件事件Handler< MyEvent

创建 MyEventArgs 类, 由 EventArgs 产生, 并让它持有有用的参数( 如选中的项目 ) 。

在您的主页中,在您动态添加的每个用户控件上, 添加一个处理器到 MyEvent 上 。

我实际上认为MVVM模式存在缺陷,所有这些控制逻辑和事件处理器都属于 current 类(MVCVM!!!! >),但这是另一个故事。 :





相关问题
Silverlight Rich text box control

Our team decided that we need our own custom Rich text box control for Silverlight app we are developing. We looked at existing controls mentioned at A good rich text control for Silverlight but ...

Silverlight ImageBrush not rendering (with Bing Map Control)

I m trying to add an image to a Pushpin instance from the Silverlight Bing Map Control, but I can t seem to get it to render (the pushpin renders fine). This is probably a general WPF question rather ...

Silverlight OpenFileDialog DoEvents equivalent

I m processing large files after they are selected by the user. My code looks like the following: if (FileDialog.ShowDialog() == true) { // process really big file } This freezes up the UI so ...

list of controls with templates in silverlight

Does anyone know where to find a list of controls that you can set the template on in Silverlight? I ve wasted several hours now trying to create control templates only to find that the control doesn ...

Silverlight, Updating the UI during processing

I have a simple silverlight multifile upload application, and i want to provide the user with some feedback, right now its only in a test phase and i dont have the webservice. Somehow i cant get the ...

Silverlight 3 - FindName returns null

This looks a bug to me.. Using Silverlight 3 and i have a user control defined in XAML and trying to access the object during runtime returns a null. <Grid> <common:CommonGridEditPanel x:...

silverlight 3 collection binding

Someone please help me understand why this binding does not work... I have a class called SelectionManager with a property called dates which is populated by a WCF service. The property is an ...

热门标签