gpt4 book ai didi

xaml - 如何从 uwp 中的任何页面传递 ContentDialog 中的值?

转载 作者:行者123 更新时间:2023-12-02 21:02:33 25 4
gpt4 key购买 nike

我需要将值从页面传递到 Contentdialog。请帮帮我

如何从任何页面向 ContentDialog 传递值

最佳答案

你可以重载构造函数。
例如,如果您有不带参数的标准构造函数

   public ContentDialog1()
{
this.InitializeComponent();
}

只需添加一个新的:

   public ContentDialog1(string param)
{
this.InitializeComponent();
}

当你调用对话框时,你可以传入参数:

     ContentDialog1 cd = new ContentDialog1("some info");
await cd.ShowAsync();

关于xaml - 如何从 uwp 中的任何页面传递 ContentDialog 中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37537454/

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