BoucherS_cp
015d89f201
9 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
ecb8324c33
fixed all OnApplyTemplate overrides that hook into events.
14 years ago
brianlagunas_cp
85533d9d49
ChildWindow: fixed bug in the .NET 3.5 version when setting the FocusVisualStyle in the OnApplyTemplate method. .NET 3.5 doesn't support setting Setter.Value with a ContentControl so it is a limitation of the .net framework. Luckily this works in .NET 4.0. The work around was to not use a focus visual style in the .NET 3.5 version and to set it to null.
15 years ago
brianlagunas_cp
a5ad7c136e
ChildWindow: fixed focus issue where focus rectangles wouldn't follow the elemtns on move.
15 years ago
brianlagunas_cp
e3335ee515
ChildWindow: Implemented DesignerWindowState property. By default it will be open. The WindowState property will now have no affect on the design-time state of the ChildWindow.
15 years ago
brianlagunas_cp
ed36c01709
ChildWindow: removed WindowState design time check until new feature request can be implemented
15 years ago
brianlagunas_cp
5cb7b67577
ChildWindow: WindowState is Open when in design mode, but Closed by default at runtime.
15 years ago
brianlagunas_cp
091e9255f9
ChildWindow: changed default value of WindowState to Closed
15 years ago
brianlagunas_cp
665eeb3eb2
ChildWindow: set WindowState property to BindTwoWayByDefault. This will eliminate the need to specifiy Mode=TwoWay in the WindowState binding.
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
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
7795ff42f7
ChildWindow: fixed Closed and Closing event bug. When setting e.Cancel to true in the Closing event, the ChildWindow would still close.
15 years ago
brianlagunas_cp
d2fc320f65
ChildWindow: fixed focus issue when showing the ChildWindow and immediately tabbing.
15 years ago
brianlagunas_cp
5e15db5835
ChildWindow: implemented properties that were previsouly not implemented such as OverlayBrush and OverlayOpacity which controls the look of the modal overlay when using the ChildWindow in a modal setting. Changed Caption property from type of string to type of object so now complex captions can be created using various XAML elements.
15 years ago
brianlagunas_cp
1c3ca6df7e
ChildWIndow: fixed bug when creating child window from code and setting IsModal to true.
15 years ago
brianlagunas_cp
58b648b40c
ChildWIndow: fixed bug which was cause by showing the window then resizing the parent, the window would not recalculate its position to stay in view. I refactored the code. I also added a new property called WindowStartupLocation. There are two options; Center and Manual. Set it to Center if you want the ChildWindow to always be centered when it opens. Set it to Manual if you want to control where it opens by setting the Top and Left properties. If set on Manual and the user drags the ChildWindow and closes it, it will reopen the last place the user moved it. The default value is Manual.
15 years ago
brianlagunas_cp
a1c5cee93b
ChildWindow: fixed tabbing bug.
15 years ago
brianlagunas_cp
8717ff917f
ChildWindow: fixed bug when trying to use in XBAP
16 years ago
brianlagunas_cp
ea183afbc3
ChildWindow: fixed modal overlay when IsModal = true
16 years ago
brianlagunas_cp
34e7fd56df
Made a lot of changes, and possible breaking changes:
1. added new MaskedTextBox control
2. no longer have UpDownBase<T>
3. NumericUpDown now has new base class. Hopefully I didn't break anything, but I know I did :0)
4. By default the NumericUpDown uses doubles. To use anything else such as decimals or int you must specify the ValueType accordingly.
<extToolkit:NumericUpDown Grid.Row="1" Value="{Binding Age}" Increment="1" Minimum="18" Maximum="65" ValueType="{x:Type sys:Int32}" />
16 years ago
brianlagunas_cp
72a68c2374
various bug fixes, consolidated common styles
16 years ago
brianlagunas_cp
4873017096
ChildWindow: fixed WindowState bug
ChildWindow: added DialogResult property, user can set the DialogResult to true/false/null and the window will close, when close button pressed dialog result is false.
ChildWindow: can now show ChildWindow by using data binding on the WindowState property or by calling Show/Close in code.
ChildWindow: added Closed and Closing events. During the Closing event a user can set e.Cancel to true and the close will be cancelled and Closed event will not fire.
16 years ago
brianlagunas_cp
73ae2b52ba
restricted ChildWindow in container. fixed bug with ChildWindow zindex, added a WindowState property to ChildWindow which will control opening and closing the window through data binding; two states WindowState.Open and WindowState.Closed. Added OverlayBrush and Overlay Opacity properties allow users to modify the ChldWindow's OverLay element.
16 years ago
brianlagunas_cp
01292c647f
initial checkin of ChildWindow control
16 years ago