0

我正在尝试制作一个可重复使用的 WinUI 对话框来显示进度信息,但我希望我使用 aContentDialog作为实现细节而不公开其 API 的事实。我想我可以通过派生Control并创建其ContentDialog内部来做到这一点ControlTemplate

像这样的东西:

[TemplatePart(Name = PART_Dialog, Type = typeof(ContentDialog))]
public class ProgressDialog : Control
{
    private const string PART_Dialog = "PART_Dialog";

    private ContentDialog _dialog;

    public ProgressDialog()
    {
        DefaultStyleKey = typeof(ProgressDialog);
    }

    public async Task ShowAsync()
    {
        if (_dialog != null)
        {
            _ = await _dialog.ShowAsync(ContentDialogPlacement.Popup);
        }
    }

    protected override void OnApplyTemplate()
    {
        _dialog = GetTemplateChild(PART_Dialog) as ContentDialog;
        base.OnApplyTemplate();
    }
}

使用如下定义的样式:

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:MyApp.Controls">

    <Style TargetType="local:ProgressDialog" BasedOn="{StaticResource DefaultProgressDialog}" />

    <Style x:Key="DefaultProgressDialog" TargetType="local:ProgressDialog">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="local:ProgressDialog">
                    <ContentDialog x:Name="PART_Dialog">
                        <Grid>
                            <TextBlock Text="Hello, world!" />
                        </Grid>
                    </ContentDialog>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

然后我会像这样显示对话框ContentDialog

var dialog = new ProgressDialog();
dialog.XamlRoot = this.XamlRoot;
await dialog.ShowAsync();

我在 Generic.xaml 中指定了资源字典,但控件甚至不尝试加载模板。我的OnApplyTemplate方法永远不会被调用,所以_dialog不会被连接起来。我认为这是因为我实际上并没有在可视化树中创建控件,但那是怎么ContentDialog做的呢?

如果我打电话给ApplyTemplate()自己ShowAsync(),它会返回false并且模板仍然没有加载。

4

1 回答 1

0

如何将 ContentDialog 包装在自定义控件中?

源自本文档

运行仅在应用模板中的 XAML 定义的可视化树后才能工作的代码。例如,通过调用 GetTemplateChild 获取对来自模板的命名元素的引用的代码,以便其他模板后运行时代码可以引用这些部分的成员。

如果您只是实现,而不是添加到可视化树中。OnApplyTemplate不会被调用,并且 GetTemplateChild会返回 null。请在 xaml 中声明如下。

<Grid>
    <Button Click="Button_Click" Content="Open" />
    <local:ProgressDialog x:Name="Dialog" />
</Grid>

或者直接做一个继承ContentDialog的类,更多可以参考这个文档

于 2021-06-10T01:55:58.280 回答