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
740
tamaño de imagen en el Ribbon en tiempo de ejecucion
posted

al cargar mi Form construyo mi Menu con el UltraToolbarsManager, agrego "Tabs" luego "Groups" y finalmente "Tools" todo por codigo leyendo unas tablas donde tengo almacenado mis opciones para el "tools".

 

cuando agrego una imagen con Icono "Small" lo hago asi y funciona bien:

 

 

Dim Boton As New ButtonTool(opcion.OM_ID)

Boton.SharedProps.Caption = opcion.OM_DESCRIPCION

Boton.SharedProps.DisplayStyle = ToolDisplayStyle.ImageAndText

 

Boton.SharedProps.AppearancesSmall.Appearance.Image = ImageList1.Images(0)

 

utm_MenuBeta.Tools.Add(Boton)

utm_MenuBeta.Ribbon.Tabs(Str_Nom_Mod).Groups(0).Tools.AddTool(Boton.Key)

 

 

pero cuando agrego un Icomo "Large" lo hago asi   y no me sale ninguna imagen :

 

 

Dim Boton As New ButtonTool(opcion.OM_ID)

Boton.SharedProps.Caption = opcion.OM_DESCRIPCION

Boton.SharedProps.DisplayStyle = ToolDisplayStyle.ImageAndText

 

Boton.InstanceProps.AppearancesLarge.Appearance.Image = ImageList1.Images(0)

 

utm_MenuBeta.Tools.Add(Boton)

utm_MenuBeta.Ribbon.Tabs(Str_Nom_Mod).Groups(0).Tools.AddTool(Boton.Key)

 

Para la Imagen "Small" uso un icono de 16 x 16 y para la "Large" uso un icono de 42 x 42, lo curioso es que en tiempo de diseño si me sale el menu y todo pero por codigo no me sale.

alguien me puede decir que me falta.

"Small" normal


"Large" no muestra el Icono

  • 71886
    Offline posted

    Hello Carlos,

    You might want to change this line:

    Boton.InstanceProps.AppearancesLarge.Appearance.Image = ImageList1.Images(0)

    with the following one:

               Boton.SharedProps.AppearancesLarge.Appearance.Image = ImageList1.Images(0)

    Please try the above and feel free to let me know if I misunderstood you or if you have any other questions.