如何根据窗口更改对话框消息?

时间:2019-04-30 12:11:46

标签: c# wpf windows visual-studio xaml

我试图根据用户所在的窗口,找到在对话框中显示不同消息的方法。

示例

如果用户位于MainWindow.xaml中并单击关闭按钮,则对话框中的消息应显示“您确定要关闭MainWindow吗?”

如果用户使用MainWindowTwo.xaml,则“确定要关闭MainWindowTwo吗?”

这是我当前的代码,当用户单击关闭按钮时出现。

XAML

<Border BorderBrush="#081e2b" BorderThickness="2">

    <Grid Background="#fff">

        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="400"/>
        </Grid.ColumnDefinitions>

        <Grid.RowDefinitions>
            <RowDefinition Height="40" />
            <RowDefinition Height="110" />
            <RowDefinition Height="50" />
        </Grid.RowDefinitions>

        <Grid VerticalAlignment="Top"  Grid.ColumnSpan="1" Grid.Row="0">
            <DockPanel Width="400" Background="#081e2b">

            </DockPanel>
            <DockPanel HorizontalAlignment="Right" Background="#f12c00">
                <Button x:Name="CloseWindow" Content="X" Click="CloseWindow_Click" Height="40"></Button>
            </DockPanel>
        </Grid>
        <Grid Grid.Row="1">
            <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                <Label Content="Are you sure you wish to logout?" FontSize="16"></Label>
            </WrapPanel>
        </Grid>
        <Grid Grid.Row="2">
            <WrapPanel VerticalAlignment="Bottom" Background="#FFE6E6E6" >
                <Button Click="YesClose_Click" x:Name="YesClose" FontWeight="SemiBold" Content="Yes" Height="50" Background="#FFE6E6E6" Foreground="#081e2b" BorderBrush="#FFE6E6E6" Width="200"></Button>
                <Button Click="NoClose_Click" x:Name="NoClose" FontWeight="SemiBold" Content="No" Height="50" Background="#FFE6E6E6" Foreground="#081e2b" BorderBrush="#FFE6E6E6" Width="200"></Button>
            </WrapPanel>
        </Grid>

    </Grid>
</Border>

C#

private void YesClose_Click(object sender, RoutedEventArgs e)
    {
        var closeapp = Application.Current.Windows[0];
        closeapp.Close();

        Login.LoginScreen logscreen = new Login.LoginScreen();
        logscreen.Show();
        this.Close();
    }

    private void NoClose_Click(object sender, RoutedEventArgs e)
    {
        this.Close();
    }

    private void CloseWindow_Click(object sender, RoutedEventArgs e)
    {
        this.Close();
    }

真的很感谢您的帮助,因为我是WPF的新手,我已经玩了几天了。

谢谢

1 个答案:

答案 0 :(得分:0)

如果我正确了解您的情况,我会 用文本创建变量,例如将其绑定到标签:

<Label Content="{Binding QuestionText}" ...

我将在构造函数中设置的此变量

LoginScreen(string message)
{
    this.QuestionText = message;
}

并依赖MainWindow或MainWindowTwo构造具有所需文本的LoginScreen。

可以用不同的方式来处理它,也许我没有想到最优的方法,但是它应该可以工作