發布時間:2020-08-06 06:46 作者:獨孤劍 閱讀:1723
// 添加引用 System.Desing; using System.Windows.Forms; using System.Windows.Forms.Design; namespace WindowsFormsApp2 { // 引用 System.Design /// <summary> /// 自定義控件不允許更改高度 /// </summary> [System.ComponentModel.Designer(typeof(Designer1))] public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); } } #region 自定義設計類 /// <summary> /// 自定義設計類 /// </summary> public class Designer1 : System.Windows.Forms.Design.ControlDesigner { /// <summary> /// 不允許調整控件的高度 /// </summary> public override SelectionRules SelectionRules { get { SelectionRules rules = SelectionRules.Visible | SelectionRules.Moveable | SelectionRules.LeftSizeable | SelectionRules.RightSizeable; return rules; } } } #endregion }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞