WindowsUIButton(String, String, ImageLocation, ButtonStyle, String, Boolean, Int32, Boolean, SuperToolTip, Boolean, Boolean, Boolean, Object, Object, Int32, Boolean, Boolean) Constructor
Initializes a new instance of the WindowsUIButton class with the specified settings.
Namespace: DevExpress.XtraBars.Docking2010
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[EditorBrowsable(EditorBrowsableState.Never)]
public WindowsUIButton(
string caption,
string imageUri,
ImageLocation imageLocation,
ButtonStyle style,
string toolTip,
bool useCaption,
int visibleIndex,
bool enabled,
SuperToolTip superTip,
bool useImage,
bool checked,
bool visible,
object glyphs,
object tag,
int groupIndex,
bool isLeft,
bool enableImageTransparency
)
Parameters
Name | Type | Description |
---|---|---|
caption | String | A String value that is the button text. |
imageUri | String | A String value that is the Unified Resource Identifier (URI) for the image, contained within the Image Gallery and Context-Dependent Images, that should be used as the button glyph. |
imageLocation | DevExpress.XtraBars.Docking2010.ImageLocation | An ImageLocation enumerator value that specifies the button glyph’s alignment relative to this button’s text. |
style | ButtonStyle | A Style enumerator value that specifies whether this button should be a regular push button or check button that supports regular and pressed states. |
toolTip | String | A String value that is the button hint. |
useCaption | Boolean | true if the button should display its caption; otherwise, false. |
visibleIndex | Int32 | An Int32 value that specifies the order for this button within its parent container. |
enabled | Boolean | true if this button is enabled; otherwise, false. |
superTip | SuperToolTip | A SuperTip object assigned to this button. |
useImage | Boolean | true if this button should display its glyph; otherwise, false. |
checked | Boolean | true if this button is in the pressed state; otherwise, false. Pressed state is only supported by buttons whose style parameter is set to ButtonStyle.CheckButton. |
visible | Boolean | true if this button is visible to end-users; otherwise, false. |
glyphs | Object | An Object that stores images, used as button images for all its visual states. See the WindowsUI Buttons topic to learn more. |
tag | Object | An Object that stores any required info related to this button. |
groupIndex | Int32 | An Int32 value that specifies to which group this button belongs. |
isLeft | Boolean | true if the button should be aligned by the left edge of the parent container; otherwise, false. |
enableImageTransparency | Boolean | true if the button should display transparent pixels of its glyph as is; otherwise, false. |