Simon Boucher
59dd599ec0
V4.0.2 Released
5 years ago
Simon Boucher
1df13d45e1
V4.0.0 Released
6 years ago
Simon Boucher
cf10fcb830
V3.8.0 Released
6 years ago
Simon Boucher
94eec13344
V3.6.0 Released
6 years ago
BoucherS
e8345a642d
V3.5.0 Released
7 years ago
BoucherS
6dc73683a7
V3.2.0 Released
9 years ago
J. Smith
c5c38984b0
Modify RichTextBoxFormatBarManager.cs to fix #1165
Addresses #1165
In my testing, this appears to solve this problem and does not interfere with or alter normal behavior.
I tried to keep code formatting consistent with original code.
9 years ago
BoucherS_cp
af8b733790
11 years ago
BoucherS_cp
925cbcd472
12 years ago
emartin_cp
983f425e67
Version 2.0
13 years ago
emartin_cp
0d9a63a7d2
Version 1.9
13 years ago
emartin_cp
a64bb838eb
Rename WPFToolkit.Extended directories for Xceed.Wpf.Toolkit
13 years ago
emartin_cp
2edfd42354
1.7.0 Release
14 years ago
Nebuleux_cp
1f0dbeb7e0
Change the license back to Microsoft Public (Ms-PL) in the header of every .cs and .xaml files.
14 years ago
Nebuleux_cp
a5a5359315
Change the namespaces.
14 years ago
Nebuleux_cp
f0775d4061
Add a license description in the header of every .cs and .xaml files.
14 years ago
brianlagunas_cp
9d90261826
UpDown editors: due to a bug in Visual Studio, you cannot create event handlers for events that have generic or nullable event args in XAML. So I changed the event args to object to support the design experience, but this now forces you to cast the result of the new value to the appropriate data type.
Various bug fixes
15 years ago
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