首页 > 其他分享 >WPF知识点备忘录——控件

WPF知识点备忘录——控件

时间:2023-02-25 16:26:23浏览次数:35  
标签:控件 知识点 StackPanel 备忘录 Grid WPF

Grid

    <Grid Margin="3,3,10,3">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="auto"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="auto"/>
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="auto"/>
            <RowDefinition Height="auto"/>
            <RowDefinition Height="auto"/>
            <RowDefinition Height="auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Label Name="lb1" VerticalAlignment="Center" Margin="3" FontSize="40" FontFamily="微软雅黑">褪色反射变换</Label>
        
        <StackPanel Grid.Row="4" Grid.Column="1">
        </StackPanel>
    </Grid>

StackPanel

        <!--默认竖向-->
        <StackPanel>
            <TextBlock Text="aa"/>
            <TextBlock Text="bb"/>
        </StackPanel>
        <StackPanel Orientation="Horizontal">
            <TextBlock Text="cc"/>
            <TextBlock Text="dd"/>
        </StackPanel>

 

标签:控件,知识点,StackPanel,备忘录,Grid,WPF
From: https://www.cnblogs.com/chixiner/p/17154663.html

相关文章

  • Android studio控件Imageview
      一:<ImageViewandroid:src="@drawable/yourname"//资源来源android:scaleType="centerInside"//缩放方式android:layout_width="200dp"//宽android:......
  • 297个机器学习彩图知识点(13)
    导读本系列将持续更新20个机器学习的知识点,欢迎关注。1.阈值类别特征的方差2.切分文本3.领域链接4.TSS5.误差6.训练错误率7.真正类率8.丢弃概率......
  • WPF知识点备忘录——命令
    定义:跟应用程序的一些高级任务绑定的函数,可以避免重复的编写事件处理函数;当连接的命令不可用时,命令特性通过自动禁用控件来管理用户界面的状态。继承关系:Routed......
  • android stdio中textview控件的属性
    android:id//可以通过此id找到该控件android:layout_width//宽度android:layout_height//高度android:layout_background//设置背景的颜色、图片或是其他文件复制预期图片......
  • WPF资料整理1
    1、框架类Prism: https://github.com/PrismLibrary/PrismPrism是用于在WPF,Windows10UWP和XamarinForms中构建松耦合,可维护和可测试的XAML应用程序的框架ReactivUI:......
  • WPF图标库——MahApps.Metro.IconPacks
    1.https://github.com/MahApps/IconPacks.Browser下载下载后在bin目录下运行“IconPacks.Browser”挑选需要使用的图标运行后如下:  2.选择想要使用的图标,拷贝代码......
  • java并发知识点
    Java并发什么是线程,Java中实现线程的常用方式有几种,如何创建线程,终止线程有哪些方式线程是操作系统调度的最小单元;java创建线程:执行newThread().start()方法调用操......
  • WPF知识点备忘录——元素绑定
    1.元素绑定<SliderName="sliderFontSize"Margin="3"Value="10"/><TextBlockMargin="10"Text="AAA"FontSize="{BindingElementName=sliderFontSize,Path=Val......
  • WPF知识点备忘录——依赖项属性、路由事件
    1.依赖项属性定义:在普通属性上封装了些专门用于实现WPF功能的属性publicstaticreadonlyDependencyPropertyMarginProperty;publicThicknessMargin......
  • redis知识点
    通信协议协议概念:所谓协议其实就是发送和接收双方约定的数据格式而已;类似于加密解密;没有什么神秘;比如http协议,双方约定好格式,如何读取url,取参赛,取请求头......