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
brianlagunas_cp
d7341b8703
added the initial Office 2010 Format style contextual formating bar to RichTextBox. To enable the FormatBar set the RichTextBox.AllowFormatting property to True.
16 years ago
brianlagunas_cp
3e52016cdb
merged bug fixes into 3.5 solution
16 years ago
brianlagunas_cp
3afcdd542a
14537 : made ok/yes buttons default buttons for MessageBox.
RichTextBox changed LostFocus event to PreviewKeyboardLostFocus event
16 years ago
brianlagunas_cp
03296b8c35
merged bug fixes into 3.5 solution
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
8ce6714ab5
added Extended WPF Toolkit solution for Visual Studio 2008 and .NET 3.5 - this has a dependency on the WPFToolkit
16 years ago
brianlagunas_cp
f2182afd6e
RichTextBox: fixed bug when using RichTextBox and not data binding to the Text Property
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
brianlagunas_cp
2af86dd609
RichTextBox: placed the UpdateText method on a background thread using the dispatcher to asyncronously update the text property. This dramatically improves performance.
16 years ago
brianlagunas_cp
c014a69dc7
added new RichTextBox control. Extends the Windows.Controls.RichTextbox to include a Text dependency property that supports data binding. This control uses the concept of text formatters. TextFormatters allow the user to format the text in the RichTextBox into any format they wish. Three text formatters are included: PlainTextFormatter, RtfFormatter, and a XamlFormatter. User can create their own custom formatters by creating a class that inherits from ITextFormatter and setting that as the default formatter in the <RichTextBox.TextFormatter> block.
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
brianlagunas_cp
17171e5f07
added styling capabilities to the MessageBox so a user can style the MessageBox to fit the theme of their application
16 years ago
brianlagunas_cp
7679352934
Initial check in of new MessageBox control
16 years ago
brianlagunas_cp
ad85a7a61a
refactored visual states into partial class. also added individual resource dictionary for busy indicator.
16 years ago
brianlagunas_cp
659ffd0cfd
incremented build number
16 years ago
brianlagunas_cp
63bf6a79c2
changed my mind and put the _displayAfterTimer.Tick event hookup in a public constructor
16 years ago
brianlagunas_cp
4544f0bc15
mistakenly had DefaultStyleKeyProperty.OverrideMetadata(typeof(BusyIndicator), new FrameworkPropertyMetadata(typeof(BusyIndicator))); in a puclic constructor. Moved it to a static constructor. placed _displayAfterTimer.Tick event hookup in the overridden OnIntialize method.
16 years ago
brianlagunas_cp
41510b497b
initial project check in
16 years ago