emartin_cp
a64bb838eb
Rename WPFToolkit.Extended directories for Xceed.Wpf.Toolkit
13 years ago
emartin_cp
0c933c8124
1.8.0 Release
14 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
ecb8324c33
fixed all OnApplyTemplate overrides that hook into events.
14 years ago
brianlagunas_cp
ad527a73ae
ColorPicker: fixed selected color not streching to length of control.
15 years ago
brianlagunas_cp
2d7ae5a473
PropertyGrid: enabled the ability to define an EditorDefinition by property name as well. You can now have an EditorDefinition for a specific Type as well as for specific property names as well.
This example will provide a TextBox editor for any property of type DateTime as well as any property with the defined property names:
<extToolkit:PropertyGrid>
<extToolkit:PropertyGrid.EditorDefinitions>
<extToolkit:EditorDefinition TargetType="{x:Type sys:DateTime}">
<extToolkit:EditorDefinition.Properties>
<sys:String>FirstName</sys:String>
<sys:String>LastName</sys:String>
</extToolkit:EditorDefinition.Properties>
<extToolkit:EditorDefinition.EditorTemplate>
<DataTemplate>
<TextBox Text="{Binding Value}" />
</DataTemplate>
</extToolkit:EditorDefinition.EditorTemplate>
</extToolkit:EditorDefinition>
</extToolkit:PropertyGrid.EditorDefinitions>
</extToolkit:PropertyGrid>
You can also target just a Type or just property names.
15 years ago
brianlagunas_cp
a3ce84952a
ColorPicker: fixed null exception when trying to re-template in Blend
15 years ago
brianlagunas_cp
6feaea84aa
various improvements. slightly changed ColorPicker style to match the rest of the dropdown controls.
15 years ago
brianlagunas_cp
ae62284349
Changed ButtonChrome to contentcontrol and fixed various dropdown controls to visualize IsEnabled and IsChecked properly.
15 years ago
brianlagunas_cp
ec4d1c039c
ColorPicker: added 3 properties; AvailableColorsHeader, StandardColorsHeader, and RecentColorsHeader which will allow you to change the text for the respective sections.
15 years ago
brianlagunas_cp
8448087086
Getting ready for v1.4 release
15 years ago
brianlagunas_cp
55c9ce7f55
small misc fixed and changes.
15 years ago
brianlagunas_cp
20ca224b52
ChildWindow: added FocusedElement property that will allow you to set the initial focused element when the ChildWindow is shown/receives focus.
FocusedElement="{Binding ElementName=_textBox}"
15 years ago
brianlagunas_cp
833623716a
ColorPicker: implemented ColorCanvas control. ColorPicker now has an advanced color palette to choose colors form.
15 years ago
brianlagunas_cp
a030fcd934
initial checkin of new ColorCanvas control. This is an advanced color control that is not within a popup, but acts as a stand alone control that allows you to select colors by using a color canvas, or by setting RGB and Alpha values.
15 years ago
brianlagunas_cp
d48a3d1211
Major overhaul of folder structure. Seperated Generic resource dictionary into smaller more managable resource dictionaries (one for each control). This will also help add support for theming. Hopefully I didn't break anything.
15 years ago
brianlagunas_cp
99f34fec54
ColorPicker: added transparent color swatch to Standard Colors. Fixed minor binding errors.
15 years ago
brianlagunas_cp
17e1e9f05f
ColorPicker: added new property that allows you to specify how to show the color information. You can show just the color or the color and color name. Just set the DisplayColorAndName property to true to display the color block and the name of the color next to it.
<extToolkit:ColorPicker DisplayColorAndName="True"/>
15 years ago
brianlagunas_cp
53ead6bd64
ColorPicker: fixed bug where the popup would stay open when other controls receive focus. Restyled the colorPicker.
RichTextBoxFormatBar: fixed font highlight toogle button to display the current highlight color
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.
16 years ago
brianlagunas_cp
d8d4a632b9
ColorPicker: completely re-wrote the color picker control. It now no longer has the color canvas and sliders to choose colors, (it will eventually in advanced mode). It now has 140 color squares of all available KnownColors, it also has a standard color palette of ten commonly used colors, and keeps track of recently used colors. You can supply your own custom available color and standard color palettes by setting the AvailableColors and StandardColors properties.
16 years ago
brianlagunas_cp
8e558b1436
changed coding stragegy so I can more easily support both .NET 4.0 and 3.5.
16 years ago
brianlagunas_cp
ea2e742da8
14378 : fixed BusyIndicator focus issue
14297 : fixed ColorPicker null reference error when not databinding to it.
16 years ago
brianlagunas_cp
72a68c2374
various bug fixes, consolidated common styles
16 years ago
brianlagunas_cp
6d10a6e4b0
Initial checkin of new ColorPicker control
16 years ago