forum

Home / DeveloperSection / Forums / Ribbon Button Image Programtically

Ribbon Button Image Programtically

Anonymous User 1707 23-Dec-2013

I'm trying to load a image onto a Ribbon Button. This is the System.Windows.Controls.RibbonBar type.

here is the code:

public RibbonGroup CreateButtons()
{
    RibbonGroup GroupControlComputers = new RibbonGroup();
    GroupControlComputers.Header = "Computer Control";
    GroupControlComputers.Items.Add(DropdownButton("DropDown Stuffs"));
    return GroupControlComputers;    
}
public RibbonButton DropdownButton(String Caption)
{
    RibbonButton NewRibbonButton = new RibbonButton();
    NewRibbonButton.Label = Caption;
    NewRibbonButton.AllowDrop = true;
    return NewRibbonButton;
}

I cant figure out how to add a icon. i can add the button without an image with no problems

Path to class file creating button is MyProject\Functions\Ribbonbar.cs

Path to the Icon File is MyProject\Images\Test\smallicon.ico

I have tried to figure out the LargeImageSource and just cant understand what I need to do.

Any help would be appreciated


c# c# 
Updated on 23-Dec-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By