How to show large icons when using axSymbologyControl?

100 Views Asked by At

I'm using ArcGIS axSymbologyControl. How to show large icons?

public IStyleGalleryItem GetItem()
{
    m_styleGalleryItem = null;
    axSymbologyControl1.StyleClass = esriSymbologyStyleClass.esriStyleClassScaleBars;

    this.ShowDialog()
    return m_styleGalleryItem;
}

my desktop application enter image description here

ArcGis window

enter image description here

1

There are 1 best solutions below

1
On

Is there a Size property that you can set? Something like

public IStyleGalleryItem GetItem()
{
    m_styleGalleryItem = null;
    axSymbologyControl1.StyleClass = esriSymbologyStyleClass.esriStyleClassScaleBars;

    //try different x and y values here for various sizes
    axSymbologyControl1.Size = new System.Drawing.Size(94, 264);

    this.ShowDialog()
    return m_styleGalleryItem;
}

I have no experience with the ESRI/ArcGIS libraries, but controls deriving from System.Windows.Forms.Control have this property, and this seems similar.

I found some sample code buried in the ArcObjects SDK 10 .NET API Reference, where I pulled that line above from. Not sure if that is the exact library you are using, but perhaps those docs will provide better information than I.