brianlagunas_cp
bd818d50ec
RichTextBoxFormatBar: fixed bug when selecting text and trying to show a context menu, such as spell check. The RTBFormatBar would not allow the context menu to show.
15 years ago
brianlagunas_cp
d0b7fe55f4
ColorPicker: Added SelectedColorChanged event. Added ButtonStyle property so you can style the ColorPicker's dropdown button any way you want.
RichTextBoxFormatBar: Added Text Highlight Color, Font Color, Bullet list and numbered lists.
15 years ago
brianlagunas_cp
8e558b1436
changed coding stragegy so I can more easily support both .NET 4.0 and 3.5.
15 years ago
brianlagunas_cp
ab899f8d9a
RichTextBoxFormatBar: fixed bug when you select text, then the format bar shows, then click the text again to unselect, the format bar still shows even though no text is selected.
15 years ago
brianlagunas_cp
7f5a1b75f5
RichtextBoxFormatBar: fixed bug where text would loose highlight after first text transformation was applied.
15 years ago
brianlagunas_cp
1763c930b6
renamed IRichTextBoxFormatBar property from RichTextBox to Target. This describes the purpose of the property better when creating your own custom format bar.
15 years ago
brianlagunas_cp
ec18e6d0f8
still working on format bar positioning, what a pain!
15 years ago
brianlagunas_cp
54498deec4
improved format bar positioning
15 years ago
brianlagunas_cp
03aa223ff7
RichTextBox: changed format bar to only show when highlighting with mouse at the end of the selection, not during selection. try to improve hiding the format bar when mousing outside of the richtextbox.
15 years ago
brianlagunas_cp
140533ed75
RichTextBox: Removed the AllowFormatting property and completely changed the way the format bar works. The format bar is now a seperate control and can be used either on the deafult RichTextBox or the toolkit's RichTextBox. The format bar is used in conjunction with a format bar manager class. You add the format bar as follows
<toolkit:RichTextBox>
<toolkit:RichTextBoxFormatBarManager.FormatBar>
<toolkit:RichTextBoxFormatBar />
</toolkit:RichTextBoxFormatBarManager.FormatBar>
</toolkit:RichTextBox>
or on the default RichTextBox like so
<RichTextBox >
<toolkit:RichTextBoxFormatBarManager.FormatBar>
<toolkit:RichTextBoxFormatBar />
</toolkit:RichTextBoxFormatBarManager.FormatBar>
</RichTextBox>
You can also create your own format bar by inheriting from IRichTextBoxFormatBar.
15 years ago