UserControl1.cs
上传用户:cpw91211
上传日期:2021-01-18
资源大小:46k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace CustomComboDemo
- {
- public partial class UserControl1 : UserControl
- {
- public UserControl1()
- {
- InitializeComponent();
- }
- private void UserControl1_SizeChanged(object sender, EventArgs e)
- {
- // Calculate size of checked list box.
- checkedListBox1.Size = new Size(DisplayRectangle.Width - checkedListBox1.Left - 5,
- DisplayRectangle.Height - checkedListBox1.Top - button1.Height - 10);
- }
- }
- }