Quantcast
Channel: Extended WPF Toolkit™ Community Edition
Viewing all 4964 articles
Browse latest View live

New Post: Change Theme

$
0
0
hi,

this is probably a complete noob question, but I seem to be missing somehting: how can I change the theme of the controls. I use MahApps.Metro styling which has a ThemeManager. I need to incorporate the XWT controls in the changing of the global theme.

by default I use a dark theme, but ie. the PropertyGrid is dispayed with light background, but the "global" text-color is used from the global theme - so I have white on white.

thanks for any hint regards Tilli

New Post: Propertygrid Numericupdown max. min. Increment

$
0
0
how can a Integer Property in a Numericupdown with min. max. and increment values into the propertygrid?

Created Unassigned: DateTimePicker select date bug [20441]

$
0
0
When I try to use DateTimePicker from Extended Wpf Toolkit I found this strange behaviour.
If I set up time any value differs from 0:00 and then try to select day in the next month
![Image](http://i017.radikal.ru/1311/b5/f776a9771e39.jpg)
calendar skip this month and go to the next.
For example, if I try select date November 8, 2015 selected date will be December 6, 2015.
We have two changes (current month is October): one in November and one in Decmber.
It happend becouse date changing twice: one time when mouse down occurs and one when occurs mouse up. The result view is:
![Image](http://s57.radikal.ru/i156/1311/81/df70da71f784.jpg)
In the text field we see the correct month,
![Image](http://s005.radikal.ru/i212/1311/76/42bc2297dcec.jpg)
but in the calendar view there is December.
![Image](http://i021.radikal.ru/1311/0e/70962c098bfc.jpg)
What can I do?

New Post: Change Theme

$
0
0
Hi,

Currently, the PropertyGrid (and the other toolkit controls) have a system theme(for windows7 and windows 8).
v2.1 of the "Extended Toolkit Plus" will let you theme all the toolkit controls (and the Microsoft controls) with the following themes :
-Office2007 Blue
-Office2007 Black
-Office2007 Silver
-MetroDark with an accentColor
-MetroLight with an accentColor

In the meantime, if you only want to modify the foreground color of the PropertyGrid, you can go in file :
Xceed.Wpf.Toolkit/PropertyGrid/Themes/Generic.xaml (for windows 7)
Xceed.Wpf.Toolkit/PropertyGrid/Themes/Aero2.NormalColor.xaml (for windows 8)
, modify whatever brush you want and recompile.

Commented Issue: DecimalUpDown ignores MouseWheelActiveOnFocus [20013]

$
0
0
Based on discussion http://wpftoolkit.codeplex.com/discussions/447813#post1069463

DecimalUpDown seems to be ignoring MouseWheelActiveOnFocus property. The mousewheel is only active when the mouse pointer is on the control irrespective of this setting.

"MouseWheelActiveOnFocus" property is now obsolete, but the same problem occurs with "MouseWheelActiveTrigger" property :
When focus is on the DecimalUpDown (with MouseWheelActiveTrigger = Focused), and mouse pointer is outside the DecimalUpDown, using the mouseWheel does nothing. If the mouse pointer is over the DecimalUpDown, using the mouseWheel increments/decrements.

It looks like ButtonSpinner.OnMouseWheel() is only called when mouse is over the Control.
Comments: ** Comment from web user: BoucherS **

Correction.
This is not a bug.
Here is the behavior with MouseWheelActiveTrigger on a UpDown control:
a) MouseWheelActiveTrigger = Focused
The control have to be focused and the mouse have to be over the control to increment/decrement.
b) MouseWheelActiveTrigger = MouseOver
The mouse have to be over the control to increment/decrement
c) MouseWheelActiveTrigger = Disabled
The control can't increment/decrement

To prevent misunderstanding, the enum "Focused" will be renamed "FocusedMouseOver" in v2.2.

New Post: Version 2.1

New Post: Fork @ GitHub

$
0
0
I#ve now also included a few patches from the AvalondockHompage wich were not yet in AvalonDock!

New Post: Version 2.1

$
0
0
Hi jogibear9988,

I'm not sure if your fixes made it in time for v2.1 (since it will be release shortly), but they will be in for v2.2.
At the moment, the project is not planned to switch to git. We would lost our history, CodePlex would need to change our files system, we would need a new procedure for releases.... But we never know :-)

Edited Feature: Support Char editor in PropertyGrid [18914]

$
0
0
Based on Issue:
http://wpftoolkit.codeplex.com/workitem/18854
Comments: ** Comment from web user: BoucherS **

Char edition will be available in v2.2

New Post: how PropertyGrid.PropertyDefinitions dynamic change by SelectObject

Edited Feature: Support preview of FrameworkElements in PropertyGrid [18916]

$
0
0
Based on Issue:
http://wpftoolkit.codeplex.com/workitem/18854
Comments: ** Comment from web user: BoucherS **

Will be added in v2.2

New Post: Change Theme

$
0
0

Thanks for the info! Regards, Tilli

New Post: Version 2.1

$
0
0
I#ve now created my own GIT Repo (fork github), so not to switch is not a big problem. I plan to update my fork, everytime you release a new Version!

My Patches will then also be updated so a merge is possible!

New Post: DataGrid - Add little button for filtrer in column Header

$
0
0
Hello,

I work with the lasted version of DataGrid.

I would like add a function filter and I want add a control in my column header.

I want to keep the header default style and simply add a small button to right.

I writted this code
<Style TargetType="{x:Type xcdg:ColumnManagerCell}">
                                                    <Setter Property="HorizontalContentAlignment" Value="Center"/>
                                                    <Setter Property="HorizontalAlignment" Value="Center"/>                                                    
                                                    <Setter Property="Template">
                                                        <Setter.Value>
                                                            <ControlTemplate TargetType="{x:Type xcdg:ColumnManagerCell}">
                                                                <Grid>
                                                                    <Grid.ColumnDefinitions>
                                                                        <ColumnDefinition Width="*"></ColumnDefinition>
                                                                        <ColumnDefinition Width="Auto"></ColumnDefinition>                                                                        
                                                                    </Grid.ColumnDefinitions>
                                                                    <ContentPresenter Grid.Column="0"
                                                                                      ContentTemplate="{TemplateBinding ContentTemplate}"
                                                                                      ContentStringFormat="{TemplateBinding ContentStringFormat}"
                                                                                      Style="{TemplateBinding Style}">                                                                       
                                                                    </ContentPresenter>
                                                                    <Button Grid.Column="1" Background="Transparent" ToolTip="Filtrer...">
                                                                        <StackPanel>
                                                                            <Image Source="Resources\Ajouter.png" Width="16" Height="16"></Image>
                                                                        </StackPanel>
                                                                    </Button>
                                                                    <Button Grid.Column="1" Content="..."></Button>
                                                                </Grid>
                                                            </ControlTemplate>
                                                        </Setter.Value>
                                                    </Setter>
                                                </Style>
Thank you for your help.

Updated Wiki: Home

$
0
0
Update: New version 2.1 coming soon. Community Edition v2.0.0 released with 67 improvements (see list). The Plus Edition gets 10 additional improvements and new controls.

Extended WPF Toolkit Plus

Extended WPF Toolkit™ is the number one collection of WPF controls, components and utilities for creating next generation Windows applications. Use it to build professional looking, modern, and easy to use line of business applications. The Extended WPF Toolkit project has been downloaded more than 200,000 times here and on Nuget.

The free, open source Community Edition is provided under the Microsoft Public License and includes the following controls:

AvalonDocknew in 2.0AutoSelectTextBoxBusyIndicatorButtonSpinner
CalculatorCalculatorUpDownCheckComboBoxCheckListBox
ChildWindownew featuresCollectionEditorDataGridCollectionControlDialog
ColorCanvasColorPickerDateTimePickerDateTimeUpDown
DecimalUpDownDoubleUpDownDropDownButtonIntegerUpDown
MagnifierMaskedTextBoxMessageBoxnew featuresMultiLineTextEditor
PiePrimitiveTypeCollEditorPropertyGridnew featuresRichTextBox
RichTextBoxFormatBarSplitButtonPanels/Layoutsnew in 1.9TimelinePanel
TimePickerWatermarkTextBoxWindowContainernew in 2.0 WindowControl new in 2.0
Windows 8 Theme new in 2.0WizardZoombox

Upgrade to Extended WPF Toolkit Plus to get even more controls, features, and professional support.

Latest News

New Live Explorer app available online as a Click Once app. Try it now!.

 
Bitcoin You can purchase with bitcoins and get a 1-year, 1-developer subscription for the Plus Edition for only 0.3 BTC! Just scroll down to the bottom of any page on http://wpftoolkit.com and select 'Pay with Bitcoin'.

- released Community Edition v2.0.0 containing 67 new improvements (see list).

 
Extended WPF Toolkit Plus- released Plus Edition v2.0.0 containing a variety of new controls and enhancements, including a styleable and feature-rich Chart control.

- released v1.9.0 of the Community Edition, the first update this year. It contains a record-breaking 70 improvements (see the complete list) and a new control.

Action items

  • Enjoy WPF!
  • Please rate this release and write something positive. It's at the bottom of the downloads page
  • Follow this project (click "follow" at the top right of this page)
  • Follow @datagrid on Twitter for WPF and Toolkit news
  • Like Xceed's WPF page on Facebook
  • Check out a video or two on XceedVideos YouTube Channel
  • Add bugs or feature requests to the Issue Tracker

community-full.png

Updated Wiki: Home

$
0
0
Update: New version 2.1 coming in early December. Community Edition v2.0.0 released with 67 improvements (see list). The Plus Edition gets 10 additional improvements and new controls.

Extended WPF Toolkit Plus

Extended WPF Toolkit™ is the number one collection of WPF controls, components and utilities for creating next generation Windows applications. Use it to build professional looking, modern, and easy to use line of business applications. The Extended WPF Toolkit project has been downloaded more than 200,000 times here and on Nuget.

The free, open source Community Edition is provided under the Microsoft Public License and includes the following controls:

AvalonDocknew in 2.0AutoSelectTextBoxBusyIndicatorButtonSpinner
CalculatorCalculatorUpDownCheckComboBoxCheckListBox
ChildWindownew featuresCollectionEditorDataGridCollectionControlDialog
ColorCanvasColorPickerDateTimePickerDateTimeUpDown
DecimalUpDownDoubleUpDownDropDownButtonIntegerUpDown
MagnifierMaskedTextBoxMessageBoxnew featuresMultiLineTextEditor
PiePrimitiveTypeCollEditorPropertyGridnew featuresRichTextBox
RichTextBoxFormatBarSplitButtonPanels/Layoutsnew in 1.9TimelinePanel
TimePickerWatermarkTextBoxWindowContainernew in 2.0 WindowControl new in 2.0
Windows 8 Theme new in 2.0WizardZoombox

Upgrade to Extended WPF Toolkit Plus to get even more controls, features, and professional support.

Latest News

New Live Explorer app available online as a Click Once app. Try it now!.

 
Bitcoin You can purchase with bitcoins and get a 1-year, 1-developer subscription for the Plus Edition for only 0.3 BTC! Just scroll down to the bottom of any page on http://wpftoolkit.com and select 'Pay with Bitcoin'.

- released Community Edition v2.0.0 containing 67 new improvements (see list).

 
Extended WPF Toolkit Plus- released Plus Edition v2.0.0 containing a variety of new controls and enhancements, including a styleable and feature-rich Chart control.

- released v1.9.0 of the Community Edition, the first update this year. It contains a record-breaking 70 improvements (see the complete list) and a new control.

Action items

  • Enjoy WPF!
  • Please rate this release and write something positive. It's at the bottom of the downloads page
  • Follow this project (click "follow" at the top right of this page)
  • Follow @datagrid on Twitter for WPF and Toolkit news
  • Like Xceed's WPF page on Facebook
  • Check out a video or two on XceedVideos YouTube Channel
  • Add bugs or feature requests to the Issue Tracker

community-full.png

Updated Wiki: Home

$
0
0
Update: New version 2.1 coming in early December 2013. Community Edition v2.0.0 released with 67 improvements (see list). The Plus Edition gets 10 additional improvements and new controls.

Extended WPF Toolkit Plus

Extended WPF Toolkit™ is the number one collection of WPF controls, components and utilities for creating next generation Windows applications. Use it to build professional looking, modern, and easy to use line of business applications. The Extended WPF Toolkit project has been downloaded more than 200,000 times here and on Nuget.

The free, open source Community Edition is provided under the Microsoft Public License and includes the following controls:

AvalonDocknew in 2.0AutoSelectTextBoxBusyIndicatorButtonSpinner
CalculatorCalculatorUpDownCheckComboBoxCheckListBox
ChildWindownew featuresCollectionEditorDataGridCollectionControlDialog
ColorCanvasColorPickerDateTimePickerDateTimeUpDown
DecimalUpDownDoubleUpDownDropDownButtonIntegerUpDown
MagnifierMaskedTextBoxMessageBoxnew featuresMultiLineTextEditor
PiePrimitiveTypeCollEditorPropertyGridnew featuresRichTextBox
RichTextBoxFormatBarSplitButtonPanels/Layoutsnew in 1.9TimelinePanel
TimePickerWatermarkTextBoxWindowContainernew in 2.0 WindowControl new in 2.0
Windows 8 Theme new in 2.0WizardZoombox

Upgrade to Extended WPF Toolkit Plus to get even more controls, features, and professional support.

Latest News

New Live Explorer app available online as a Click Once app. Try it now!.

 
Bitcoin You can purchase with bitcoins and get a 1-year, 1-developer subscription for the Plus Edition for only 0.3 BTC! Just scroll down to the bottom of any page on http://wpftoolkit.com and select 'Pay with Bitcoin'.

- released Community Edition v2.0.0 containing 67 new improvements (see list).

 
Extended WPF Toolkit Plus- released Plus Edition v2.0.0 containing a variety of new controls and enhancements, including a styleable and feature-rich Chart control.

- released v1.9.0 of the Community Edition, the first update this year. It contains a record-breaking 70 improvements (see the complete list) and a new control.

Action items

  • Enjoy WPF!
  • Please rate this release and write something positive. It's at the bottom of the downloads page
  • Follow this project (click "follow" at the top right of this page)
  • Follow @datagrid on Twitter for WPF and Toolkit news
  • Like Xceed's WPF page on Facebook
  • Check out a video or two on XceedVideos YouTube Channel
  • Add bugs or feature requests to the Issue Tracker

community-full.png

New Post: Collections-Support?

$
0
0
Hello :)

Now I got the time to try the code above.
It throws an exception at
cpi.Properties.Add( scpi );
because CustomPropertyItem.Properties is readonly.

I am still looking for a good example with the collection-support. Would be even better with a MVVM-approach (binding the values to the PropertyGrid).

Any ideas??

Thanks a lot!
Joerg

New Post: Collections-Support?

$
0
0
Hi,

You are right, v2.0 throws an exception when doing
cpi.Properties.Add( scpi );
v2.1 doesn't have this problem. It will be released soon.

Created Issue: Styling inline buttons for Windows 8 [20454]

$
0
0
From discussion 447239

Review the DateTimePicker theme under Windows 8 to be more inline with the standard theme.

----------------------------------
Hi,

Please see the image below. The top control is a DateTimePicker, while the bottom control is a standard WPF ComboBox (with the IsEditable property set to true).

![Image](http://i.imgur.com/yibA5ej.png)

What's the best way to make all inline buttons (i.e. the drop-down button and spinner buttons) look similar to the WPF standard controls (preferably using code-behind as these controls are being added dynamically)?
Viewing all 4964 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>