I am using the Office Ribbon in XP. I needed a ColorPicker but couldn't use RibbonGallery because it available only for Windows7 and I need to support XP. I have adapted a colorpicker based on a RibbonDropDownButton, Everything works fine except for 2 issues
- The RibbonDropDownButton menuitem does not close when any color button that is built into the menuitem is pressed. How do I close the menuitem programatically.
- When the colorpicker selection is made I need the selected color to be shown in a different button. In Word there is a button that applies color to a text selection. This button has an "A" in blue with a color bar under it. The color bar shows the current color.
I have code that does the following:
protected void standardColorBtn_Click(object sender, RoutedEventArgs e)
{
SelectedColor = (System.Windows.Media.Color)((Button)sender).Tag;
PDFWriter.MainWindow mw = (PDFWriter.MainWindow)App.Current.MainWindow;
RibbonButton rb = (RibbonButton)mw.FontColorButton();
RibbonCommand rc = (RibbonCommand)rb.Command;
ImageSource ims=rc.SmallImageSource;
rc.SmallImageSource = null; //clear the button image ???
Bitmap bmp = new Bitmap("D:\\Visual Studio 2010\\Projects\\WPF\\PDFWriter\\images\\fontcolor.png"); //the default image with red bar
Graphics graphics = Graphics.FromImage(bmp);
System.Drawing.Color c = new System.Drawing.Color();
c = System.Drawing.Color.FromArgb(SelectedColor.A, SelectedColor.R, SelectedColor.G, SelectedColor.B);
graphics.DrawLine(new System.Drawing.Pen(c), 3, 13, 13, 13); //line 1
graphics.DrawLine(new System.Drawing.Pen(c), 3, 14, 13, 14); //line 2
graphics.DrawLine(new System.Drawing.Pen(c), 3, 15, 13, 15); //line 3
graphics.Dispose();
bmp.Save("D:\\Visual Studio 2010\\Projects\\WPF\\PDFWriter\\images\\fontcolor.bmp"); //the image that is
bmp.Dispose();
rc.SmallImageSource = ims; //resest the button image???
}
The XAML code for the Font Color button is:
<r:RibbonCommand x:Key="FontColorCommand"
x:Name="fcc"
LabelTitle=""
ToolTipTitle="Text Color"
ToolTipDescription="Apply text color."
SmallImageSource="images/fontcolor.bmp"
LargeImageSource="images/fontcolor.bmp"/>
The Font Color Button image does not change. If I restart the app the Font Color button shows the changed image.
What do I have to do to get the button image to refresh. Obviously nulling and resetting the original value does not do it.