• radiobutton的使用


    radiobutton的使用,基础开发必备常识! 这些常识不知道,如何进行项目开发,更不要说啥子修改了,根本修改不了的!知道吗!

       有些人的开发形势是极其严峻,极其残酷的处境中,主观得要知道,明白的啊,否则再继续遭遇,挫败就是必然的事情了。。。 明白其中的做事逻辑所在了吧,这是内在,无形,也是必然的做事逻辑所在啊。

    1. <Window x:Class="WpfApp1.control.Windowradiobutton"
    2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    6. xmlns:local="clr-namespace:WpfApp1.control"
    7. mc:Ignorable="d"
    8. Title="Windowradiobutton" Height="450" Width="800">
    9. <Grid>
    10. <RadioButton Content="男" GroupName="sex" Margin="10,100" FontSize="20" Foreground="Red" HorizontalAlignment="Left"
    11. VerticalAlignment="Top"
    12. >RadioButton>
    13. <RadioButton Content="女" GroupName="sex" Margin="80,100" FontSize="20" Foreground="Red" HorizontalAlignment="Left"
    14. VerticalAlignment="Top"
    15. >RadioButton>
    16. <RadioButton Content="语文" GroupName="course" FontSize="20" Foreground="Blue" HorizontalAlignment="Left"
    17. VerticalAlignment="Top"
    18. > RadioButton>
    19. <RadioButton Content="数学" GroupName="course" Margin="70,0" FontSize="20" Foreground="Blue" HorizontalAlignment="Left"
    20. VerticalAlignment="Top"
    21. >RadioButton>
    22. <RadioButton Content="历史" GroupName="course" Margin="140,0" FontSize="20" Foreground="Blue" HorizontalAlignment="Left"
    23. VerticalAlignment="Top"
    24. >RadioButton>
    25. <RadioButton Content="外语English" GroupName="course" Margin="210,0" FontSize="20" Foreground="Blue" HorizontalAlignment="Left"
    26. VerticalAlignment="Top"
    27. >RadioButton>
    28. Grid>
    29. Window>

    效果

      

     

  • 相关阅读:
    ESP8266-Station模式连接服务器
    字符串匹配之Sunday算法
    假期如何控制孩子视力?推荐视力康复师分享的护眼灯
    Mysql数据库常用表结构操作语句
    Docker 常用命令 - 容器数据卷
    南瓜科学新品上线 开辟益智玩具新世界
    根据vsan实施方案细节化
    工行里的数字员工是怎么来的?
    高并发服务优化篇:详解一次由读写锁引起的内存泄漏
    快鲸智慧园区管理系统-提供智慧园区一站式解决方案
  • 原文地址:https://blog.csdn.net/chenggong9527/article/details/126085738