gpt4 book ai didi

c# - 在Windows应用商店中访问MainPage当前实例的最佳方法?

转载 作者:行者123 更新时间:2023-12-03 13:44:42 26 4
gpt4 key购买 nike

我想知道如何从C#Windows应用商店应用程序中的另一个类访问主页的当前实例。

具体来说,在适用于Surface RT平板电脑的Windows Store应用中(因此,仅限于RT API),我想访问其他类的主页方法和UI元素。

创建一个新实例的工作原理如下:

MainPage mp = new MainPage();
mp.PublicMainPageMethod();
mp.mainpageTextBlock.Text = "Setting text at runtime";

它公开了方法/UI元素,但这不是正确的过程。

在运行时从其他类访问方法和修改主页上的UI元素的最佳实践是什么?关于Windows Phone,有几篇关于此的文章,但对于Windows RT,我似乎找不到任何东西。

最佳答案

如果使用的是MVVM,则可以使用Messenger类:

MainWindow.xaml:

using GalaSoft.MvvmLight.Messaging;

public MainWindow()
{
InitializeComponent();
this.DataContext = new MainViewModel();
Messenger.Default.Register<NotificationMessage>(this, (nm) =>
{
//Check which message you've sent
if (nm.Notification == "CloseWindowsBoundToMe")
{
//If the DataContext is the same ViewModel where you've called the Messenger
if (nm.Sender == this.DataContext)
//Do something here, for example call a function. I'm closing the view:
this.Close();
}
});
}

在您的ViewModel中,您可以随时调用Messenger或通知您的View:
Messenger.Default.Send<NotificationMessage>(new NotificationMessage(this, "CloseWindowsBoundToMe"));

相当容易... :)

关于c# - 在Windows应用商店中访问MainPage当前实例的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17556492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com