New Post: How to set the title for LayoutAnchorable from MVVM binding?
Hi, Thanks. Its working perfectly!
View ArticleNew Post: How to change the border brush for LayoutAnchorable?
Hi, I am able to change the border for LayoutAnchorableControl. But still I see there are two borders and I want to change the outer border. I have used "Snoop" and found that there is a Border with...
View ArticleNew Post: DateTimePicker popup size
Hi, I have tried your sample code in a new project, and here's the result : http://postimg.org/image/zd58j74eb/. Everything is fine : the DateTimePicker shows a popup with a correctly aligned and...
View ArticleNew Post: PropertyGrid Expand/Collapse All
Hi, In v2.7 Plus, the propertyGrid offers the following public methods : -CollapseAllCategories() -CollapseCategory( string groupName ) -ExpandAllCategories() -ExpandCategory( string groupName ) These...
View ArticleNew Post: propertyGrid show items for expanded collection
Hi, This is not currently possible. Issue https://wpftoolkit.codeplex.com/workitem/22228 has been created to address this . Currently, expanding a Collection of T will show the Collection Properties,...
View ArticleNew Post: How to change the border brush for LayoutAnchorable?
Hi, You will find the Outer Border in the LayoutAnchorablePaneControl. You can modify it in a style for LayoutAnchorablePaneControl, based on the default one from generic.xaml and set this new style to...
View ArticleNew Post: DateTimePicker popup size
I am using VS2015 Community, .net 4.6 on Windows 10. I did insert the above copied code into a separate project and, you're right, it worked just fine! BTW, I did remove the duplicate settings; thanks...
View ArticleNew Post: How to change the border brush for LayoutAnchorable?
Thanks @BoucherS. It's working perfectly!
View ArticleNew Post: How to customize the CollectionControl editor ?
In my CollectionControl editor, for the list on the left, I would like to display not the type of the object ("Person") but a property of the object For example, the "FirstName" of the Person as i can...
View ArticleNew Post: propertyGrid show items for expanded collection
Hi, I've tried to use this example as it is: http://www.codeproject.com/Articles/4448/Customized-display-of-collection-data-in-a-Propert. I actually could expand the Collection and see the items. But i...
View ArticleNew Post: DateTimePicker popup size
Hum...tough to say. Maybe some implicit styles for popup, Calendar...any margin or padding....
View ArticleNew Post: How to customize the list displayed in the left-hand of a...
Hi, Yes you can. Simply override the ToString() method to display the property you wish :public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void...
View ArticleNew Post: propertyGrid show items for expanded collection
Do note that there is a hack-ish workaround detailed at http://stackoverflow.com/questions/36286530/xceed-wpf-propertygrid-show-item-for-expanded-collection/36441833#36441833 based on the CodeProject...
View ArticleNew Post: DataGrid Binding Source in Page
Hello, I try to develop a page based application in WPF. I have a MainWindow, in it, I have a Frame, and I navigate pages in this frame. In some pages, I want to use DataGrid but I cannot show the data...
View ArticleNew Post: New versions
Hi, v2.7 Community edition is now available....as well as v3.0 Plus Edition.
View ArticleNew Post: How to customize the list displayed in the left-hand of a...
Thanks a lot for your reply. I am going to update my version of Extented WPF Toolkit to v2.6 (current version) And about the fix you are talking in v3.0, it is for the Plus edition, and for the...
View ArticleNew Post: How to customize the list displayed in the left-hand of a...
The Plus Edition is always 2 or 3 versions ahead. You can take a look at it here : http://wpftoolkit.codeplex.com/wikipage?title=Compare%20Editions or wait for v3.0 to be released. Current versions are...
View ArticleNew Post: Launch ChildWindow when DataGrid row selected
Hi. I have a WPF MVVM Light app in Visual Studio 2015. It has a DataGrid control that shows some records. It has the following binding on SelectedItem:SelectedItem="{Binding SelectedEmployee}" On the...
View Article