I\'ve found lots of code on this site and others that show how to create a nested datagrid in XAML but I\'m unable to locate any information on how to use c# code to obtainthe same results. What I wou
I have a custom control that I initially set to collapsed like so <local:SpriteButton Content=\"Why?\" x:Name=\"showReason\" Click=\"showReason_Click\" Margin=\"418,12,12,656\" Visibility=\"Collap
I’m using the following HierarchicalDataTemplate to bind a collection of MenuViewModels to a Menu control:
I am having a bit of an issue with the TreeView in SilverLight. I need to be able to have multiple datatemplates on the tree because different objects are going to need to display different data on t
I have a custom WPF window defined as: <Window x:Class=\"MainWindow\" xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"
The project I am working on is a desktop based WPF application. I have implemented the MVVM pattern in it. Also I am using Unity IoC and the Repository Pattern in it.
My requirement is to show a custom UserControl as a popup. I am trying to implement this in Silverlight/MVVM using this method. But I am unable to find a way wh开发者_如何学编程ere I can pass some par
I\'ve been pounding away at this issue for a little while, and have only found part of the solution. I\'m trying to set up a TabControl so that I can in some cases prevent the user from changing the
I have seen a control template for tab control...in http://www.codeproject.com/KB/WPF/WPFOutlookNavi开发者_JS百科.aspx
I have two simple custom controls derived from standard WPF controls. I.e. internal class CustomLabel : Label { ... }