GrapeCity MultiRow Windows Forms Documentation
ButtonFlatStyle Property (PopupCell)
Example 


Gets or sets the flat style of the pop-up button.
Syntax
<DefaultValueAttribute()>
<SRDescriptionAttribute("Indicates the flat style of the pop up button.")>
<SRCategoryAttribute("Appearance")>
Public Property ButtonFlatStyle As FlatStyle
Dim instance As PopupCell
Dim value As FlatStyle
 
instance.ButtonFlatStyle = value
 
value = instance.ButtonFlatStyle
[DefaultValue()]
[SRDescription("Indicates the flat style of the pop up button.")]
[SRCategory("Appearance")]
public FlatStyle ButtonFlatStyle {get; set;}

Property Value

One of the System.Windows.Forms.FlatStyle values. The default is System.Windows.Forms.FlatStyle.System.
Exceptions
ExceptionDescription
System.ComponentModel.InvalidEnumArgumentExceptionThe specified value is not a System.Windows.Forms.FlatStyle value.
Example
The following code example shows how to customize a pop-up cell's behavior or appearance. This code example is part of a larger example provided for the PopupCell class.
PopupCell CreateCustomButtonAppearancePopupCell()
        {
            PopupCell popupCell1 = new PopupCell();

            popupCell1.ButtonForeColor = Color.Red;
            popupCell1.ButtonBackColor = Color.Yellow;
            popupCell1.ButtonFlatStyle = FlatStyle.Flat;
            popupCell1.ButtonFlatAppearance.MouseOverBackColor = Color.Orange;
            popupCell1.Ellipsis = MultiRowEllipsisMode.EllipsisEnd;
            
            popupCell1.Size = new Size(130, 21);

            // Show Font dialog to edit font.
            popupCell1.Popup = new FontDialog();
            popupCell1.PopupValueMember = "Font";

            return popupCell1;
        }
Private Function CreateCustomButtonAppearancePopupCell() As PopupCell
        Dim popupCell1 As New PopupCell()

        popupCell1.ButtonForeColor = Color.Red
        popupCell1.ButtonBackColor = Color.Yellow
        popupCell1.ButtonFlatStyle = FlatStyle.Flat
        popupCell1.ButtonFlatAppearance.MouseOverBackColor = Color.Orange
        popupCell1.Ellipsis = MultiRowEllipsisMode.EllipsisEnd

        popupCell1.Size = New Size(130, 21)

        ' Show Font dialog to edit font.
        popupCell1.Popup = New FontDialog()
        popupCell1.PopupValueMember = "Font"

        Return popupCell1
    End Function
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PopupCell Class
PopupCell Members

 

 


Copyright © GrapeCity, inc. All rights reserved.