0
votes
1answer
10 views
WPF: Can I put a colour animation in a style?
This is a simple WPF window in XAML:
<Window x:Class="AnimateTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
…
2
votes
3answers
193 views
How can I make the WPF TabControl appear as it is with MultiLine = false in Windows forms (default).
In Windows Forms the default behaviour of a TabControl is to have the tabs spill out to a scrollable area if they consume too much space (MultiLine = false).
What is the best approach to achieving …
0
votes
1answer
24 views
Where should be put XAML for layout of custom control in WPF?
After custom control is created there automatically appeared file for C# code - MyCustomControl.cs:
public class MyCustomControl : ContentControl {
static MyCustomControl( ) {
...
…
0
votes
0answers
27 views
WPF Change Grid.ColumnSpan on trigger
I have a DockPanel with 2 ListBoxes docked on the left and a 2-column Grid on the right.
When an item is selected in listBox1, I display a details view in Column 0 of the Grid.
When an item is …
0
votes
2answers
37 views
TextBox with automatic culture formatting?
I'm trying to create a TextBox that only allows positive integer input, and that should display the input with culture-specific formatting automatically (in this case en-US, so it should use the ',' …
0
votes
1answer
16 views
WPF “Selected” Property of Custom Control or “Logical Focus”. What should be used?
In my WPF project I have a custom control which is visually represented by a rectangle object. In XAML I put a number of rectangles based on this custom control. User should be able to select a group …
0
votes
1answer
595 views
Floating child window in WPF
Hi,
I want to create floating child window in .NET 3.0 WPF application.
What I'm doing is:
sideWindow = new SideWindow(this);
sideWindow.Left = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width …
1
vote
2answers
48 views
+200
Binding to a single element inside a CompositeCollection
I am trying to produce a list of servers for browsing on a network such that it produces a tree view which looks like this:
-Local Server
- Endpoint 1
- Endpoint 2
-Remote
- <Double-click to …
2
votes
4answers
37 views
XAML without the .xaml.cs code behind files.
I'm using WPF with the Model-View-ViewModel pattern. Thus, my code behind files (.xaml.cs) are all empty, except for the constructor with a call to InitializeComponent. Thus, for every .xaml file I …
0
votes
1answer
9 views
How to bind ScaleTransformation.X to slider in Silverlight 3
Hi,
I need to zoom Canvas. In WPF it is possible to bind ScaleTransformation.X to slider.Value.
I'm not able to do the same in Silverlight - some errors.
Is it supported in SL3?
Thank you.
0
votes
1answer
10 views
Visual Studio 2008 XAML Designer doesn’t like default name space in same assembly.
Environment
Visual Studio 2008
Visual C#
WPF Application Project
.NET Framework 3.5
Problem
You have a user control in the same assembly as another user control or window, and you are using it …
0
votes
1answer
13 views
Adding an image to a button in XAML
I'm trying to add an image to a button in my silverlight 3 application but cannot get the image to appear. I added a folder, named \images, to my Silverlight application folder and an using a relative …
0
votes
3answers
561 views
WPF: Implementing a MediaPlayer Audio / Video Seeker
I am currently working on an MP3 player (in a WPF application) with a WPF MediaPlayer and basically, I want to implement a Song Seeker which moves along with the current playing song.
I already …
1
vote
2answers
71 views
XAML binding doesn’t seem to set if the property is initialized in the constructor
Hello, everybody!
I've run into a problem with data-binding inside control template while the property is initialized inside the constructor.
Here is the show-case (you can also download sample …
2
votes
2answers
641 views
How to achieve Vista glass transparency (AERO) in a WPF application?
It's easy for a WPF application to make parts of a window transparent or semi-transparent. But how to I apply the current Vista theme (colors, opacity) to these transparent parts?
When I have a green …
