由3个标签组成

直接代码

  1. public partial class Roof : UserControl
  2. {
  3. public Roof()
  4. {
  5. InitializeComponent();
  6. }
  7.  
  8. private string text = "";//中间文字
  9. private float valueL = 0.00f;//默认值0.00
  10. private float valueR = 0.00f;
  11. private bool _isChecked = false;//是否选中
  12. private int roofId = ;
  13.  
  14. /// <summary>
  15. /// RoofId可用于作为唯一标识
  16. /// </summary>
  17. [Description("RoofId可用于作为唯一标识"), Category("自定义")]
  18. public int RoofId
  19. {
  20. get
  21. {
  22. return this.roofId;
  23. }
  24. set
  25. {
  26. this.roofId = value;
  27. }
  28. }
  29. /// <summary>
  30. /// 显示内容
  31. /// </summary>
  32. [Description("显示内容"), Category("自定义")]
  33. public string ShowText
  34. {
  35. get
  36. {
  37. return this.text;
  38. }
  39. set
  40. {
  41. this.text = value;
  42. lbl_TxT.Text = value;
  43. }
  44. }
  45.  
  46. /// <summary>
  47. /// 左边值
  48. /// </summary>
  49. [Description("左边值"), Category("自定义")]
  50. public float ValueL
  51. {
  52. get
  53. {
  54. return this.valueL;
  55. }
  56. set
  57. {
  58. this.valueL = value;
  59. lbl_L.Text = value.ToString();
  60. }
  61. }
  62.  
  63. /// <summary>
  64. /// 右边值
  65. /// </summary>
  66. [Description("右边值"), Category("自定义")]
  67. public float ValueR
  68. {
  69. get
  70. {
  71. return this.valueR;
  72. }
  73. set
  74. {
  75. this.valueR = value;
  76. lbl_R.Text = value.ToString();
  77. }
  78. }
  79.  
  80. /// <summary>
  81. /// 是否选中
  82. /// </summary>
  83. [Description("是否选中"), Category("自定义")]
  84. public bool IsChecked
  85. {
  86. get
  87. {
  88. return this._isChecked;
  89. }
  90. set
  91. {
  92. this._isChecked = value;
  93.  
  94. if (value) { lbl_TxT.BorderStyle = BorderStyle.FixedSingle; } else { lbl_TxT.BorderStyle = BorderStyle.None; }
  95.  
  96. }
  97. }
  98.  
  99. private void lbl_TxT_Click(object sender, EventArgs e)
  100. {
  101. if (_isChecked)
  102. {
  103. lbl_TxT.BorderStyle = BorderStyle.None;
  104. _isChecked = false;
  105. }
  106. else
  107. {
  108.  
  109. lbl_TxT.BorderStyle = BorderStyle.FixedSingle;
  110. _isChecked = true;
  111. }
  112.  
  113. }
  114.  
  115. #region 定位各个控件位置
  116.  
  117. private void roof_SizeChanged(object sender, EventArgs e)
  118. {
  119.  
  120. AutoPosition();
  121.  
  122. }
  123.  
  124. private void AutoPosition()
  125. {
  126. var roofHeight = this.Height;
  127. var roofWidth = this.Width;
  128. lbl_L.Width = roofWidth / ;
  129. lbl_R.Width = roofWidth / ;
  130. lbl_TxT.Width = roofWidth / ;
  131. lbl_L.Height = roofHeight - ;
  132. lbl_R.Height = roofHeight - ;
  133. lbl_TxT.Height = roofHeight - ;
  134.  
  135. //lbl_TxT.BackColor = Color.BlueViolet;
  136. //lbl_R.BackColor = Color.Red;
  137. //lbl_L.BackColor = Color.Blue;
  138.  
  139. this.lbl_L.Location = new System.Drawing.Point(, roofHeight / - lbl_L.Height / );
  140. this.lbl_R.Location = new System.Drawing.Point(roofWidth - lbl_R.Width, roofHeight / - lbl_R.Height / );
  141. this.lbl_TxT.Location = new System.Drawing.Point(roofWidth / , roofHeight / - lbl_TxT.Height / );
  142. }
  143.  
  144. #endregion
  145.  
  146. /// <summary>
  147. /// 控件加载出来
  148. /// </summary>
  149. /// <param name="sender"></param>
  150. /// <param name="e"></param>
  151. private void roof_Load(object sender, EventArgs e)
  152. {
  153. lbl_R.Text = valueR.ToString();
  154. lbl_L.Text = valueL.ToString();
  155. //默认背景颜色
  156. this.BackColor = System.Drawing.Color.FromArgb(, , );
  157. AutoPosition();
  158. }
  159. }

Roof.cs

  1. partial class Roof
  2. {
  3. /// <summary>
  4. /// 必需的设计器变量。
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7.  
  8. /// <summary>
  9. /// 清理所有正在使用的资源。
  10. /// </summary>
  11. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  12. protected override void Dispose(bool disposing)
  13. {
  14. if (disposing && (components != null))
  15. {
  16. components.Dispose();
  17. }
  18. base.Dispose(disposing);
  19. }
  20.  
  21. #region 组件设计器生成的代码
  22.  
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.lbl_L = new System.Windows.Forms.Label();
  30. this.lbl_R = new System.Windows.Forms.Label();
  31. this.lbl_TxT = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // lbl_L
  35. //
  36. this.lbl_L.BackColor = System.Drawing.Color.Transparent;
  37. this.lbl_L.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.25F);
  38. this.lbl_L.Location = new System.Drawing.Point(, );
  39. this.lbl_L.Name = "lbl_L";
  40. this.lbl_L.Size = new System.Drawing.Size(, );
  41. this.lbl_L.TabIndex = ;
  42. this.lbl_L.Text = "50.00";
  43. this.lbl_L.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  44. this.lbl_L.Click += new System.EventHandler(this.lbl_TxT_Click);
  45. //
  46. // lbl_R
  47. //
  48. this.lbl_R.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.25F);
  49. this.lbl_R.Location = new System.Drawing.Point(, );
  50. this.lbl_R.Name = "lbl_R";
  51. this.lbl_R.Size = new System.Drawing.Size(, );
  52. this.lbl_R.TabIndex = ;
  53. this.lbl_R.Text = "51.00";
  54. this.lbl_R.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  55. this.lbl_R.Click += new System.EventHandler(this.lbl_TxT_Click);
  56. //
  57. // lbl_TxT
  58. //
  59. this.lbl_TxT.BackColor = System.Drawing.Color.Transparent;
  60. this.lbl_TxT.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.25F);
  61. this.lbl_TxT.Location = new System.Drawing.Point(, );
  62. this.lbl_TxT.Name = "lbl_TxT";
  63. this.lbl_TxT.Size = new System.Drawing.Size(, );
  64. this.lbl_TxT.TabIndex = ;
  65. this.lbl_TxT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  66. this.lbl_TxT.Click += new System.EventHandler(this.lbl_TxT_Click);
  67.  
  68. //
  69. // roof
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.Controls.Add(this.lbl_TxT);
  74. this.Controls.Add(this.lbl_R);
  75. this.Controls.Add(this.lbl_L);
  76. this.Name = "roof";
  77. this.Size = new System.Drawing.Size(, );
  78. this.Load += new System.EventHandler(this.roof_Load);
  79. this.SizeChanged += new System.EventHandler(this.roof_SizeChanged);
  80. this.ResumeLayout(false);
  81.  
  82. }
  83.  
  84. #endregion
  85.  
  86. private System.Windows.Forms.Label lbl_L;
  87.  
  88. private System.Windows.Forms.Label lbl_R;
  89. private System.Windows.Forms.Label lbl_TxT;
  90. }

roof.Designer.cs

效果图

WinForm 自定义控件 - RooF的更多相关文章

  1. C# winform 自定义控件

    近来因为项目的问题,开始研究winform自定义控件,这篇主要是将自定义控件的属性在属性编辑器中可编辑,如果你对自定义控件比较了解的,就不用继续往下看了 首先,我创建了一个类UserButton,继承 ...

  2. C#winform自定义控件模拟设计时界面鼠标移动和调节大小、选中效果

    要想玩转Winform自定义控件需要对GDI+非常熟悉,对常用的控件有一些了解,好选择合适的基类控件来简化. 要点说明及代码 1)定义接口: using System; using System.Wi ...

  3. Winform自定义控件实例

    本文转自http://www.cnblogs.com/hahacjh/archive/2010/04/29/1724125.html 写在前面: .Net已经成为许多软件公司的选择,而.Net自定义W ...

  4. winform 自定义控件:半透明Loading控件

    winform  自定义控件:半透明Loading控件 by wgscd date:2015-05-05 效果: using System;using System.Drawing;using Sys ...

  5. c#Winform自定义控件-目录

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  6. (二)c#Winform自定义控件-按钮

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  7. (三)c#Winform自定义控件-有图标的按钮

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  8. (四)c#Winform自定义控件-选择按钮组

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

  9. (七)c#Winform自定义控件-进度条

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

随机推荐

  1. 力扣(LeetCode)长按键入 个人题解

    你的朋友正在使用键盘输入他的名字 name.偶尔,在键入字符 c 时,按键可能会被长按,而字符可能被输入 1 次或多次. 你将会检查键盘输入的字符 typed.如果它对应的可能是你的朋友的名字(其中一 ...

  2. Acid burn crackme 的第一道分析

    1.首先查下壳: 没壳,一个用delphi写的程序. 接下来就直接丢OD看看了,看一下界面, 就是这里需要验证了,然后下个bp MessageBoxA 断点 就直接跳到这来了: 在栈中返回到上一级去, ...

  3. 新闻实时分析系统-HBase分布式集群部署与设计

    HBase是一个高可靠.高性能.面向列.可伸缩的分布式存储系统,利用Hbase技术可在廉价PC Server上搭建 大规模结构化存储集群. HBase 是Google Bigtable 的开源实现,与 ...

  4. MovibleNet

    MobileNet MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications MobileN ...

  5. scrapy抓取国家社科基金项目数据库

    1.明确任务 目标网站:http://fz.people.com.cn/skygb/sk/index.php/Index/seach 抓取任务:抓取近五年某关键词(例如"能源".” ...

  6. Java通过 Scanner 类来获取用户的输入

    通过 Scanner 类来获取用户的输入. import java.util.Scanner; Scanner s = new Scanner(System.in);// 从键盘接收数据  Syste ...

  7. day20191009jdbc学习笔记

    周三Wednesday JDBC(Java DataBase Connectivity,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它由一组用Ja ...

  8. centos 7 MysSQL 5.7.23 源码安装

    MySQL 5.7.23 源码安装 CentOS 7 将默认数据库MySQL替换成了Mariadb. 这里会从系统的环境准备开始一步一步安装. 环境准备 系统版本 内核版本 IP地址 Centos 7 ...

  9. VMware修改默认开机方式

    .首先删除已经存在的符号链接 ---------------------------------------------------------------------------------- rm ...

  10. 华为eNSP路由交换-静态路由

    静态路由 一. 静态路由及默认路由基本配置 1.1实验内容 在由三台路由器所组成的简单网络中,R1和R3各连着一台PC,现在要求能够实现PC-1和PC-2之间的通信.本实验将通过配置基本的静态路由和默 ...