0

我想知道如何与 Page.xaml.cs 中定义的这个 Page 类进行通信:

public partial class Page : UserControl
{
    public Page()
    {
        InitializeComponent();
    }

    private void TextBlock_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    {
        if (HelloWorldTextBlock.Text == "Hello World")
            HelloWorldTextBlock.Text = "I've been clicked";
        else
            HelloWorldTextBlock.Text = "Hello World";
    }
    public void foo() {}


}

来自在此处创建 silverlight 对象的 webpart:

protected override void CreateChildControls()
{
     base.CreateChildControls();

     System.Web.UI.SilverlightControls.Silverlight ctrl = new System.Web.UI.SilverlightControls.Silverlight();
     ctrl.ID = "SLHelloWorld";
     ctrl.Source = SPContext.Current.Site.Url + "/XAPS/SL.XAML.HelloWorldRTM.xap";
     ctrl.Width = new Unit(400);
     ctrl.Height = new Unit(310);
     Controls.Add(ctrl);

}
4

1 回答 1

1

我不知道您对“与此 Page 类进行交流”的确切含义。但我认为您不能直接调用该类或它的实例。您可以做的是将参数传递给 Silverlight 控件,然后可以在控件内部使用该参数。您可以在以下博客文章表格 Jesse Liberty 中找到有关此内容的一些信息:将参数传递到 Silverlight 应用程序

我希望这可以帮助你。

于 2009-03-26T08:33:58.443 回答