0
votes
0answers
1 views
how can I control the opacity and z-order of the top level window in WPF?
I would like to make a small WPF app window semi-transparent and on top of other windows.
When I change settings on the top level Window it only seems to effect the contents, not the titlebar or …
0
votes
2answers
12 views
Embed multiple icons in WPF EXE
I have a WPF assembly in which I would like to embed five icons for different filetypes associated with my application.
How can I embed these icons into my EXE?
0
votes
1answer
27 views
Wpf custom control
I have a customn control which display a window with another custom control inside. The developper can redefine the control template, it works but I don't find a way to allow developper to redefine …
1
vote
2answers
31 views
Is a variable binding to a collection item possible
Hello everyone,
I'm trying to bind to an item inside a collection but the index for that item needs to be "variable".
Take the following pseudo syntax for example:
<TextBlock Text="{Binding …
0
votes
0answers
2 views
DataTrigger / Style quick in XAML
Hey
I have an Ellipse defined as so
<Ellipse Stroke="#FF474747" Style="{StaticResource SelectedTemplate}" Fill="{StaticResource RedGradient}" />
I also have two styles setup like so
…
0
votes
0answers
3 views
how to implement componentmodel in WPF
i am dynamically creating WorkFlows in WPF .i can't able to add workflowdesigner to the wpf window controls but i can able to add it to windows forms.how to use this workflow designer in WPF
0
votes
2answers
17 views
How to get text fit in text block in WPF
I have string which i have to display in TextBlock, my TextBlock have some fixed size, i need display the text in such manner if string cannot fit in TextBlock, then i have to split the string in …
0
votes
2answers
34 views
How do I enable an element to paint outside its container?
I'm trying to get elements to render outside the bounds of their parent panel, in this case I'm using a stack panel.
<StackPanel ClipToBounds="False" Width="200" Orientation="Horizontal" …
1
vote
1answer
7 views
Wpf, using a StaticResource SolidColorBrush to define the Gradient Stop Colors
I am creating some wpf resourceDictionaries whit all the styles for an application! I have a few LinearGradientBrush'es, where the color is set directly in the LinearGradientBrush reference as …
0
votes
1answer
9 views
WPF alignment stretch
Can someone help me understand the WPF stretch alignment. I often run into issues where I want a control to fill an area but I never understand on what level I should put the …
0
votes
0answers
5 views
WPF Datagrid Hyperlink Right Click
Hi, I have a datagrid which has one hyperlink column with the following code:
<dg:DataGrid Style="{StaticResource DataGridStyle}" x:Name="movieGrid"
ItemsSource="{Binding …
1
vote
2answers
38 views
MS Surface animating an SVI along a straight line
So I'm attempting to move a ScatterViewItem from 1 point to the another. I've tried using PointAnimation. However, after the animation completes I can't move the item from the To point. I can spin …
1
vote
2answers
32 views
WPF - Binding in XAML to an object created in the code behind
Can an object created in the code (ie C#) be used for binding in the XAML?
For example:
public class MyForm
{
private MyComplexObject complexObject;
public MyForm()
{
…
1
vote
0answers
17 views
What strategy should be used for converting real world dimensions to WPF units?
We have an application that will be reading real world dimensions from the DB in milimetres, these values will then be presented to the user in WPF. Currently I'm using the following strategy when …
1
vote
2answers
164 views
How to play a sound in WPF
Hi,
I'm a novice C# programmer and am having trouble getting music to play in my WPF (Windows) application using VS 2008. This is a web app. What I think is happening is myMediaElementExample …
