0
votes
2answers
20 views
Find child elements in a WPF ListView ItemTemplate
Given a populated ListView how do I iterate through each bound 'template' and pluck out the contained ComboBox (or any other control contained in 'DataTemplate')?
<ListView …
0
votes
0answers
9 views
xaml: Is there a way to simulate IsPressed with a ComboBoxItem?
I want to simulate a Button IsPressed event for a ComboBoxItem. Is this possible strictly in xaml? I know how to in code-behind as well as changing the Style or Template but I was hoping to …
0
votes
2answers
32 views
Does xaml has a version?
Wpf 4.0 is a buzzword these days which is the latest version of Wpf, I want to know what is the current version of xaml? and what was the previous version of xaml as well as Wpf?
1
vote
1answer
39 views
styling generic WPF controls
I am looking into creating type-safe generic controls. This is targeting the (reduced) generics support in WPF 4 and future Silverlight, and will include a hierarchy of generic controls.
I have two …
1
vote
1answer
45 views
Win7 WPF Alt+Tab Focus Oddity
After a couple hours of Googling I haven't been able to find any comments on this issue. We have a WindowStyle=None window with transparent background and allows transparency and does not show in …
2
votes
3answers
62 views
Using x:Name or Name in WPF
My understanding of x:Name vs Name is that some controls have a Name property, that is basically the same as setting x:Name.
Is there an advantage to using Name when it is available over x:Name?
…
0
votes
0answers
9 views
Silverlight/xaml - displaying child data in a datagrid
I have two tables in a database and using entity framework and ria services to display data in a simple datagrid. Here is the database/EF structure
Cars Make
----- ----
CarId MakeId
Car …
1
vote
2answers
30 views
Custom Silverlight control assembly not found in XAML, but is definitely referenced
I recently added a control library project to my Silverlight app's solution, so the solution now has three projects:
SLClient
SLClient.Controls
SLClient.Web
SLClient has a project reference to …
1
vote
1answer
30 views
Best way to create/edit a template programatically
I could use FrameworkElementFactory to create a template, but this class is deprecated. The recommended way, according to MSDN is to use XamlReader.Load to load XAML from a string or a memory stream. …
0
votes
1answer
21 views
How to get the size of the current screen in wpf
I know I can get the size of the primary screen by using
System.Windows.SystemParameters.PrimaryScreenWidth;
System.Windows.SystemParameters.PrimaryScreenHeight;
But how do I get the size of the …
1
vote
3answers
61 views
Simple Event Handling in MVVM
Just wondering what people had for ideas on how best to handle events in a ViewModel from controls on a View ... in the most lightweight way possible.
Example:
<MediaElement
…
0
votes
1answer
8 views
How do I get rid of the Play buttons in a Silverlight/Expression Media Player?
I'm using an ExpressionMediaPlayer to play live streams. Obviously for this I don't need a play/pause button.
Is there already a predefined way to select which controls to show, or is the correct way …
0
votes
4answers
43 views
implement INotifyProperty changed on Static Property in WPF and Silverlight
The question is how to implement INotifyPropertyChanged on a static property because the event you implement is not static, and cannot be called by a static property. Also, you cannot bind to a static …
2
votes
2answers
31 views
Packaging ResourceDictionary for Silverlight Class Library
I have a silverlight class library (not a top-level application) with several user controls that are shared by different silverlight applications. I have gone through and pulled out several styles and …
2
votes
2answers
34 views
WPF: displaying XML attribute as a checkbox
I have this XmlElement, and add some attributes to it:
xmlElemMux.SetAttribute("test1", "1");
xmlElemMux.SetAttribute("test2", "0");
I can display those in a window using a textbox like this in the …
