New Post: Conditional Wizard Pages
Hi, is there any way to set NextPage via binding in XAML? I would like to have radio buttons with basic actions, and show next pages according to selected action... I cannot find right way how to do...
View ArticleNew Post: DataGrid + TimePicker + PropertyChanged
Hi List, i have to following code in DataGrifControl: This one works:<xcdg:Column x:Name="wd" FieldName="WorkDay" Title="Datum" Width="100" IsMainColumn="True"></xcdg:Column> This one shows...
View ArticleNew Post: PropertyGrid : Edition of CollectionControl Editors
Hi, You can modify the PropertyGrid in the CollectionControl's Template. To do so, just add your "PropertyGrid.EditorDefinitions" to the PropertyGrid in the CollectionControl's Template. You will find...
View ArticleCommented Unassigned: IntegerUpDown exceed maximum behavior different from...
"Epsil0neR Feb 5, 2013 at 10:23 AM I set property Maximum = 2000, if i have entered any number greater than 2000, it's sets back to number which has been set before, but not maximum number as I want,...
View ArticleNew Post: PropertyGrid : Editor with [Browsable(false)]
Hi, When using [Browsable(false)], the property shouldn't be displayed at all. So you should not see any precision for this property.
View ArticleNew Post: [AvalonDock 2.0] Binding the title of a LayoutDocument from a...
I'm binding an ObservableCollection to AvalonDock 2.0, where every item in the collection is an AvalonDock Document. This is how I do the binding:<ad:DockingManager DocumentsSource="{Binding...
View ArticleCommented Unassigned: WizardPage.Enter and WizardPage.Leave events not raise...
HiI think you should modify Wizard.OnCurrentPageChanged method to this:```protected virtual void OnCurrentPageChanged(WizardPage oldValue, WizardPage newValue){ if (oldValue != null)...
View ArticleNew Post: How to style IntegerUpDown
Hi, You can define a style for IntegerUpDowns with triggers for the different states. For example :<Style TargetType="{x:Type xctk:IntegerUpDown}"> <Style.Triggers> <Trigger...
View ArticleNew Post: Removing white-out when inactiviating time picker
Hi, You you say you are using Expresstion Dark Theme, what theme is this ? Is it the Xceed Metro Dark theme ? If so, when TimePicker.IsEnabled = False, the background is gray and foreground lightGray.
View ArticleNew Post: Removing white-out when inactiviating time picker
No, it is Expression Dark 1.1.0 found on NuGet. Regardless, I don't want the background/foreground to change color at all. I am applying a mask with opacity over the top of the control when it is...
View ArticleNew Post: Conditional Wizard Pages
Hi, How about using the binding in the Tag property of the RadioButtons and using the the Checked event to set the WizardPage.NextPage to the RadioButton's Tag :<xctk:Wizard x:Name="_wizard"...
View ArticleNew Post: [AvalonDock 2.0] Binding the title of a LayoutDocument from a...
Hi, Can you just use the Content.Title, not the Name of the ActiveContent : public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); _avalon.DataContext = this;...
View ArticleNew Post: Removing white-out when inactiviating time picker
Hi, Just to make sure we have the same configuration : -When Expression Dark 1.1.0 is installed, App.xaml includes the ResourceDictionary "Themes\ExpressionDark.xaml". -To remove the Drop-Down from the...
View ArticleNew Post: DataGrid + TimePicker + PropertyChanged
Hi, i found the solution here:http://stackoverflow.com/questions/20203874/how-to-set-up-the-datagrid-control-from-the-xceed-extended-wpf-toolkit-with-chec Thanks anyway Peter
View ArticleCommented Unassigned: Speed up DataGridControl checking /binding Suggestion ?...
i am using extended datagridcontrol. Binding the datagrid by using datagrid.itemsource. I have checkbox and grouping in side the datagrid.While checking in group item, i have to automatically check all...
View ArticleNew Post: Question about line in TypeEditor.cs
Not sure of the exact line number, but where the Binding object is created I see this line: UpdateSourceTrigger = (Editor is InputBase) ? UpdateSourceTrigger.PropertyChanged :...
View ArticleNew Post: CollectionControl binding to WF Activity Designer
Hi, Here's a simple way of binding a list of SqlParameter to CollectionControl's ItemsSource :<xctk:CollectionControl x:Name="_collectionControl" ItemsSource="{Binding ParametersList}"/> public...
View ArticleNew Post: DataGrid + TimePicker + PropertyChanged
Me again, a very big fault. As soon i get two of this columns: with the '.' syntx, there is no more binding .<xcdg:Column FieldName="StartWorkAt"...
View ArticleNew Post: View a datagrid column's data type
As the title says, does anyone know of a way of accessing what data type a column contains? I would like to set custom cell templates and column headers depending on the column data type, but can't see...
View ArticleNew Post: Question about line in TypeEditor.cs
Hi, Initially the UpdateSourceTrigger was set to UpdateSourceTrigger.Default (or LostFocus for TextBoxes). Some users wanted a live update for numericUpDowns, so we add the...
View Article