|
|
LabelX, DevComponents.
Namespace: DevComponents.DotNetBar
Assembly: DevComponents.DotNetBar2.dll
Using: DevComponents.DotNetBar;
Declaring: DevComponents.DotNetBar.LabelX();
Creating the LabelX control.
DevComponents.DotNetBar.LabelX labelX = new DevComponents.DotNetBar.LabelX();
labelX.Text = "DevComponenets";
labelX.Location = new Point(100, 100);
labelX.Size = new Size(120, 23);
this.Controls.Add(labelX);
Assigning an image to the LabelX control.
labelX.Image = global ::WindowsApplication2.Properties.Resources.applicationsIMAGE;
Changing the image position.
labelX.ImagePosition = DevComponents.DotNetBar.eImagePosition.Bottom;
Screenshots - LabelX, DevComponents.
|
|