New Post: MessageBox and Application Losing Focus Issue
IC. I think I got it working now. Thanks. My code looks pretty much like this now:public class ChildWindow : Window { protected override OnClosing(object sender, *EventArgs e) { if (this.IsChanged) {...
View ArticleNew Post: ChildWindow ComboBox
I'm having trouble with the ChildWindow in v2.0. If I have a combobox in the child window, it does not allow you to select different values. With this example, ComboBoxInChildWindow does not work and...
View ArticleNew Post: DataGrid first row - remove highlighting
When I show my datagrid, the 1st row always has a special highlighting. It's grey and has an Aero? look about it. When I select a row, the grey highlighting of the 1st row disappears and the selected...
View ArticleNew Post: DecimalUpDown issues
DecimalUpDown seems to be ignoring MouseWheelActiveOnFocus property. The mousewheel is only active when the mouse pointer is on the control irrespective of this setting. Also rendering of the control's...
View ArticleNew Post: DoubleUpDown accuracy problem
Try using the following:<xctk:DoubleUpDown AllowSpin="True" FormatString="F16" Increment="0.01" Minimum="0.0" Maximum="1000.0" MouseWheelActiveOnFocus="True" SelectAllOnGotFocus="False"...
View ArticleNew Post: Wizard: Raise event when the Next Button is clicked on a wizard page.
Is there a way to raise an event when the next button is selected on a specific page?? I know the Wizard control has a PageChanged event. However this would get raised every time a page changes and I...
View ArticleNew Post: Propertygrid password
Is there a way to tell the propertygrid a string is a password to get the mask? -Thanks
View ArticleNew Post: Avalon Layout not correctly loading
Hi guys, I having the following problem: I'm saving my Layout like this: var serializerSaver = new XmlLayoutSerializer(DockingManager); using (var save = new StreamWriter(fileName))...
View ArticleNew Post: DateTime Column - Specific Format!?
Hi there, is it possible to give a DateTime Column a specific format? I'm from Germany - so I need the German format which is "dd.MM.yyyy"! A funny fact is that the Date-Picker is showing the right...
View ArticleNew Post: DateTime Column - Specific Format!?
well its maybe important to say that I'm using an ObservableCollection as DataSource... Columns are dynamic and not defined in XAML.... my XAML is only this:<Grid...
View ArticleNew Post: ColorPicker performance
Hey! Did anyone come across a slow performance of ColorPicker? Sometimes it takes up to several seconds to open the window where it is placed. I am lost at what can trigger such a behavior. Maybe...
View ArticleNew Post: Adding event handler
Hi guys, I'm adding a tab with Avalon like this: var leftAnchorGroup = DockingManager.Layout.RightSide.Children.SingleOrDefault(); if (leftAnchorGroup == null) { leftAnchorGroup = new...
View ArticleNew Post: DecimalUpDown issues
Issue https://wpftoolkit.codeplex.com/workitem/20013 has been created.
View ArticleNew Post: ChildWindow ComboBox
This has been fix and will be included in the next release. In the meantime, you can remove the line windowControl.Focus(); from Windowcontainer.BringToFront() method.
View ArticleNew Post: Wizard: Raise event when the Next Button is clicked on a wizard page.
WizardPage currently has 2 specific events : WizardPage has a "Leave" event that is fire when leaving a specific page. WizardPage has a "Enter" event that is fire when entering a specific page. Can you...
View ArticleNew Post: Wizard: Raise event when the Next Button is clicked on a wizard page.
Yes that is currently how I am working with it. However, if the Cancel button is selected it fires the Leave event. I would prefer that the specific code only gets hit when the Next button is fired. I...
View ArticleNew Post: ColorPicker performance
Where is the ColorPicker being used? If it is in a ChildWindow, see this thread.
View Article