UserControl1.cs
上传用户:cpw91211
上传日期:2021-01-18
资源大小:46k
文件大小:1k
源码类别:

组合框控件

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace CustomComboDemo
  10. {
  11.     public partial class UserControl1 : UserControl
  12.     {
  13.         public UserControl1()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.         private void UserControl1_SizeChanged(object sender, EventArgs e)
  18.         {
  19.             // Calculate size of checked list box.
  20.             checkedListBox1.Size = new Size(DisplayRectangle.Width - checkedListBox1.Left - 5,
  21.                                             DisplayRectangle.Height - checkedListBox1.Top - button1.Height - 10);
  22.         }
  23.     }
  24. }