子窗体主窗体传参

Posted Lulus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了子窗体主窗体传参相关的知识,希望对你有一定的参考价值。

在主窗体里面操纵子窗体的控件

子窗体

<Label x:Name="DialogLabel"></Label>

主窗体

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="*"></RowDefinition>
        <RowDefinition Height="*"></RowDefinition>
    </Grid.RowDefinitions>
    <TextBox Margin="20" x:Name="InputTextBox"></TextBox>
    <Button Margin="20" Grid.Row="1" Content="打开弹窗" Click="OpenDialog"></Button>
</Grid>

主窗体点击事件操作

private void OpenDialog(object sender, RoutedEventArgs e)
{
    Dialog dialog = new Dialog();
        //在主窗体里面操纵子窗体的控件
    dialog.DialogLabel.Content = InputTextBox.Text;
    dialog.ShowDialog();
}

直接在主窗体里面操纵子窗体的控件,进行一系列操作,业务逻辑也放在主窗体

示例代码

https://github.com/zLulus/NotePractice/tree/dev3/WPF/WpfDemo/StartWindowAndDialog

以上是关于子窗体主窗体传参的主要内容,如果未能解决你的问题,请参考以下文章

delphi 子窗体如何继承主窗体的方法

在子窗体之前打开主窗体时出错

有关于winform的 点击主窗体的按钮隐藏子窗体?

使用 VBA 从主窗体设置子窗体上的窗体属性

winform 怎么让子窗体显示在主窗体上?

C# Winform主窗体和子窗体之间如何相互操作对方的控件