• WPF中如何设置自定义控件


    1.圆角按钮的设置:

    众所周知在WPF中自带有提示信息,当我问创建Button时,点击空格出现如下可选设置

     带有小扳手🔧图标为相应的属性,如果Button有CornerRadius(角半径)属性就能够直接设置Button实现圆角效果,可是没有;因此我们采取另一种方式,将Button放到一个带有CornerRadius(角半径)的容器内,Button的Height和Width与容器的Height和Width相同,不显示Button的边框,利用容器的边框显示,间接实现Button圆角的功能。代码如下:

            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
            xmlns:local="clr-namespace:Login_Pape"
            mc:Ignorable="d"
            Title="Window1" Height="500" Width="800">

       
           

  • 相关阅读:
    Adobe Premiere基础-常用的视频特效(十五)
    Git简介和安装
    前端基础学习——你必须掌握的CSS的知识
    21天学习挑战赛--字符串切割
    method.isAnnotationPresent(Xxx.class)一直为null
    数据大屏定时请求后端数据
    基于FreeBSD 8.0 Ports配置nginx+php+mysql高性能web平台【解决方案】
    【网络协议】Https
    腾讯数字生态大会详解腾讯云全球化发展规划,全真互联为重要发力点
    C++设计模式-上
  • 原文地址:https://blog.csdn.net/A_nanda/article/details/136397199