New Post: WPF Toolkit docs/tutorials? IronPython?
Hi, We are not using ironPython, but you can have a look at the documentation available here :...
View ArticleNew Post: AvalonDock tab order changes when clicking on a tab
Hi, To re-order tabs, you need to drag a tab and as soon as the dragging tab is passing over another tab, the re-ordering takes place. Maybe you are clicking on a side of a tab and dragging just enough...
View ArticleNew Post: DataGridControl's TableView not honoring...
I prefer pixel scrolling versus row item scrolling for the DataGrid that I'm building. For WPF Fx controls, I can set VirtualizingStackPanel.ScrollUnit="Pixel" to get the desired scrolling behavior,...
View ArticleNew Post: Child Window showing Caption at center and unable to align it to Left
I am creating a child window for a wpf application the issue is Caption is aligned to Center i want to align it to Left with caption icon. I am new to wpf and also xceed. And i am using community v3.0
View ArticleNew Post: AvalonDock tab order changes when clicking on a tab
Hi BoucherS, thanks for your reply! :-) I just click in the middle of the tab und especially take care to not move the mouse. I have the same problem with AvalonDock v3.3. To make things worse,...
View ArticleNew Post: DataGridControl's TableView not honoring...
Hi, Because of UI Virtualization, we are not generating all elements. When scrolling, we don't know how many elements there is until destination. The DataGrid would have to generate all elements until...
View ArticleNew Post: DataGridControl's TableView not honoring...
I obviously don't want to disable virtualization because I'm working with very large data sets, but I also don't want the "snap to row" behavior that exists today because not all row heights are...
View ArticleNew Post: How to get Master/Detail view with the Toolkit's DataGridControl
It appears that there's some sort of Master/Detail capability in the Toolkit's DataGridControl but I can't seem to figure out how to get it to work and I've not been able to find any useful...
View ArticleNew Post: How to get Master/Detail view with the Toolkit's DataGridControl
Hi, The Master/Details are only available in the full Xceed DataGridControl. The Xceed Toolkit's DataGridControl has less features than the full Xceed DataGridControl. You can find the features that...
View ArticleNew Post: DataGridControl's TableView not honoring...
Hi, We don't use a VirtualizingStackPanel in the Xceed DataGridControl. Setting VirtualizingStackPanel.ScrollUnit to "Pixel" won't have any effect. Using a pixel scrolling in TableView is not available...
View ArticleNew Post: DataGridControl's TableView not honoring...
Bummer! I'll file a feature request for this as this is a much better and smoother UX, especially when dealing with mixed row sizes. Thanks!
View ArticleNew Post: DataGridControl's TableView not honoring...
Feature request filed here: https://wpftoolkit.codeplex.com/workitem/22507
View ArticleNew Post: How to get Master/Detail view with the Toolkit's DataGridControl
Good to know. Thanks! There's still some vestiges of master/detail capability in the Toolkit version (such as DefaultDetailsConfiguration) which made this pretty confusing (if there's...
View ArticleNew Post: Child Window showing Caption at center and unable to align it to Left
Hi, Like standard Microsoft Windows, the Caption is always centered. If you want to Left-aligned it, go in file Xceed.Wpf.Toolkit/Core/Converters/CenterTitleConverter.cs, In method "Convert(object[]...
View ArticleNew Post: AvalonDock tab order changes when clicking on a tab
For the de-serialization problem, this could be related to https://wpftoolkit.codeplex.com/workitem/22494. It will be fixed in v3.4. For the re-ordering of LayoutAnchorables, please attach a sample and...
View ArticleNew Post: How to set focus to an AvalonDock LayoutContent item programmatically
I'm trying to implement something similar to Visual Studio's "View" menu where when you select a hidden item, it shows it and if you select an item already visible it gives it focus. The hidden part...
View ArticleNew Post: How to set focus to an AvalonDock LayoutContent item programmatically
I got the answer by looking at NavigatorWindow. Posting here in case anybody needs to do this in the future.Call DockingManager.Layout.Descendents().OfType<LayoutAnchorable>() to find the...
View ArticleNew Post: How can i disable document selectio menu in avalondoc?
If I press ctr+tab apears document selection menu. User of my programm use this key combination to switch bitween tabs inside the Document window. Is is posible to disable this feature?
View ArticleNew Post: How can i disable document selectio menu in avalondoc?
Hi, Try going in file Xceed.Wpf.AvalonDock/DockingManager.cs and remove the OnPreviewKeyDown() callback. This is where the NavigatorMenu is started.―――― Get more controls, features, updates and...
View ArticleNew Post: [AvalonDock 2.0] How to use databinding in UserControl which is...
I tried to use databinding in UserControl (TestControl) which is inside LayoutAnchorable, but I failed. But when I used TextBox instead of TestControl, data passed from FileViewModel to TextBox...
View Article