1.文本控件

WPF基础学习笔记3-文本控件-LMLPHP

1.1 TextBox

  表示一个控件,该控件可用于显示或编辑无格式文本

WPF基础学习笔记3-文本控件-LMLPHP

<Grid>
        <Button Content=" 初始化"  Height="50" Width="80" Name="打开" HorizontalAlignment="Left"
                Margin="80,60,0,0" VerticalAlignment="Top">
            
        </Button>
        <TextBox x:Name="mytextox" Text="我是一个文本控件" FontSize=" 30" VerticalAlignment="Top"
                 HorizontalAlignment="Left" BorderBrush="Brown" SelectionBrush="Teal">
            
        </TextBox>
    </Grid>

创建一个按钮事件,点击改变文本

WPF基础学习笔记3-文本控件-LMLPHP

 1.2  RichTextBox控件

表示对FlowDocument对象进行操作的丰富编辑控件

WPF基础学习笔记3-文本控件-LMLPHP

<LineBreak/> 文本换行

还能增加其他控件在其中

WPF基础学习笔记3-文本控件-LMLPHP

数学公式表达

WPF基础学习笔记3-文本控件-LMLPHP

 <!--实现数学公式-->
                <Paragraph FontSize="60">
                    <Run>x</Run>
                    <InlineUIContainer>
                        <Label Margin="-20,0,0,0" HorizontalAlignment="Left"
                               VerticalAlignment="Top" FontSize="40">4</Label>
                    </InlineUIContainer>
                    <Run>+</Run>
                    <Run>y</Run>
                    <InlineUIContainer>
                        <Label Margin="-20,0,0,0" HorizontalAlignment="Left"
                               VerticalAlignment="Top" FontSize="40">3</Label>
                    </InlineUIContainer>
                    <Run>=</Run>
                    <Run>1000</Run>
                </Paragraph>
06-18 08:07