Custom Controls and user-defined controls

Source: Internet
Author: User

Custom Controls and user-defined controls facilitate user-defined controls with powerful functions.

Control property:

Size, BackGround, Location, and other attributes

Control Method:

The mouse event inherits System. Windows. Form. Control.

 

Custom window controls for video playback:

 

 

Code
Private void UpdateVisiblity ()
{
If (dvrVisible)
{
For (int I = 0; I <MaxClos; I ++)
{
Videowindows [I]. Visible = (I <cols );
}
}
}

Private void UpdateSize ()
{
Int width, height;

// Width = (ClientRectangle. Width/cols)-4;
// Height = (ClientRectangle. Height)-4;
Width = this. Size. Width/cols-4;
Height = this. Size. Height-4;

// Starting position of the view
Int startX = (ClientRectangle. Width-cols * (width + 4)/2;
Int startY = (ClientRectangle. Height-(height + 4)/2;

// Int startX = 2;
// Int startY = 2;

This. SuspendLayout ();

For (int I = 0; I <cols; I ++)
{
Videowindows [I]. Location = new Point (startX + (width + 4) * I + 1, startY + 1 );
Videowindows [I]. Size = new Size (width, height );
}

This. ResumeLayout (false );
}

Problem: The window cannot be filled with containers

 

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.