New Post: Property Grid with dynamic editors
That's close but not quite what I want. I want to change the actual type of the editor not just its itemsoure. For example a regular user might have selections constrained by using a combobox, whilst...
View ArticleNew Post: LayoutAnchorable content disappears when floating
Hi, a fix has been added in v2.5. It should fix your problem.https://wpftoolkit.codeplex.com/workitem/21482
View ArticleNew Post: Property Grid with dynamic editors
Hi, If you have a property like "FirstName", which has its own editor "FirstNameEditor" and that depends on another property like "IsMale" :public bool IsMale { get; set; } [Editor( typeof(...
View ArticleNew Post: Property Grid with dynamic editors
Is there a xaml equivalent of this code or does it have to be done in the code behind?
View ArticleNew Post: Property Grid with dynamic editors
The ResolveEditor() method is the one that will get called when the editor needs to be re-evaluated. So action has to be done in this method. I believe you could define your ComboBox/TextBox in XAML...
View ArticleNew Post: AvalonDock loses control state in Release V2.3.0
Hi, I have found that with V2.3.0 of the extended toolkit the state of any controls in an AvalonDock tab is lost when switching between tabs. I have gone back to V2.2.1 and that is OK. For example, the...
View ArticleNew Post: AvalonDock loses control state in Release V2.3.0
Hi, Can you submit more details ? When trying with a DockingManager containing a LayoutDocumentPane like this :<xcad:LayoutDocumentPane> <xcad:LayoutDocument ContentId="document1"...
View ArticleNew Post: Drag column here label in datagrid
Hi, To localize the "Drag column here to group by column..." text, the idea is to define your own FixedHeader and to set the GroupByControl.NoGroupContent :<xcdg:DataGridControl...
View ArticleNew Post: Basic RichTextBox usage - .Text Property does not update
I also had the same problem,and It seems that the nestest version doesn't work.Finally I soved this problem by this way: this.SetValue(Xceed.Wpf.Toolkit.RichTextBox.TextProperty,...
View ArticleNew Post: Basic RichTextBox usage - .Text Property does not update
Hi, v2.3 doesn't seem to have a problem with the RichTextBox.Text property. If you still have a problem in this version, please use a code snippet so we could test the same code. Thanks !
View ArticleNew Post: AvalonDock loses control state in Release V2.3.0
Hi, I have checked again with V2.2.1 and all is OK in all my views. I updated again to V2.3 and the problem comes straight back. I have DocumentsSource bound to an ObservableCollection of...
View ArticleNew Post: AvalonDock loses control state in Release V2.3.0
Hi, I tried buliding a small app to reproduce the issue in v2.3, but with no success. Here's the XAML I used :<xcad:DockingManager x:Name="AvalonDockingManager" DocumentsSource="{Binding Workspaces,...
View ArticleNew Post: AvalonDock loses control state in Release V2.3.0
Hi, I have now built a test app which can demonstrate the problem with V2.3.0 and working with V2.2.1. I have also verified that the constructor for the UserControl is called when the tab selection...
View ArticleNew Post: AvalonDock loses control state in Release V2.3.0
You can attach it in the issue here : https://wpftoolkit.codeplex.com/workitem/21560
View ArticleNew Post: horizontal content alignment of left in DateTimePicker
How do I get the text in either DateTimePicker or IntergerUpDown to be left aligned? By default, the text is right aligned. Thanks.
View ArticleNew Post: horizontal content alignment of left in DateTimePicker
Never mind. Found the answer after deciding to spend some time to read through the docs.... Property is TextAlignment and Visual Studio intellisense does not find it.
View ArticleNew Post: AvalonDock AutoHidden Panel and Touch
Hello, I use sensor monitor and when I have a panel that is in the AutoHidden state, the flyout does not respond to touch. Is there a solution to this? My current layout has a left side docked panel...
View ArticleNew Post: Add button in CollectionControl
Hi, I'm using the CollectionControl with differents Lists, but sometimes the Add button is Disabled, I was wondering why ? What are the conditions to Enabled or Disabled this Add button in the...
View ArticleNew Post: Basic RichTextBox usage - .Text Property does not update
Xaml:<StackPanel><xctk:RichTextBox x:Name="_richTextBox" Text="{Binding Path=Content,Mode=TwoWay}" Width="200"/> <Button Content="Click Me" Click="Button_Click" /> </StackPanel>...
View Article