Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
600
How to Custom the Radio's Size?
posted

When I added the UltraGrid's Cells  new ultraOptionSet1 GlyphInfo.

Infragistics.Win.UIElementDrawParams.Office2007RadioButtonGlyphInfo;

but I find it very small. How to custom the Radio Size?



Parents
  • 69832
    Verified Answer
    Offline posted

    You can customize the size, but unfortunately in order to do that you must also provide the images which represent the glyph in each of its various states.

    Example:
    UltraOptionSet option = new UltraOptionSet();
    option.GlyphInfo = new RadioButtonImageGlyphInfo( new Size(25, 25), image1, image2, image3, image4, image5, image6, image7, image8, image9, image10 );
    column.EditorControl = option;

     

Reply Children