0
votes
1answer
12 views
Strict vs handy syntax for some properties’ values in XAML.
Hi there.
There are a bunch of properties to which you could provide a value in several ways. For example:
Style.TargetType: "ns:TypeName" vs "{x:Type ns:TypeName}"
Button.Comma …
-1
votes
2answers
37 views
Create the same border type around all my controls
I tried to create my own Border class and then insert it in my controls but then it seems I cannot assign names to everything inside the borders:
..
<my:ElementBorder>
…
0
votes
2answers
23 views
WPF Update Control In Place Using XAMLReader
I have an existing item which is a child of a canvas. The item's style is contained in a resource dictionary that contains the various brushes that can be used to color the item.
…
1
vote
1answer
25 views
Silverlight with using of DependencyProperty and ControlTemplate
Hello everyone,
I'm starting to study Silverlight 3 and Visual Studio 2008. I've been trying to create Windows sidebar gadget with button controls that look like circles (I have c …
0
votes
1answer
17 views
WPF: How do I set a UI Element’s background property to null/nothing/default in XAML?
In code, I can set a UI element's background property to its default value by setting it to nothing/null, i.e.
myControl.Background = Nothing
But how do I do this in XAML? In p …
0
votes
2answers
15 views
Alternative Content for a Selected ComboBoxItem
I need to place a ComboBox in a place where I have very limited space. Is there any way to show content for the selected item in the ComboBox that is different than the content tha …
3
votes
3answers
80 views
Guidance for building a ‘flippable’ app?
How feasible is it(and some guidance) to build a WPF(Silverlight) app in such a way that it can be flipped back and forth from Web to Desktop?
Maybe some context is in order.
…
0
votes
2answers
16 views
After a “SetterCollectionBase” is in use (sealed), it cannot be modified.
<UserControl x:Class="FlowItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300" …
0
votes
3answers
42 views
How can I make an image grow x % on mouseover event in wpf?
Hi,
I have a ListBox containing a set of images in a C# WPF application. When the image enters the image area, that is, on the MouseEnter event, I want the image to grow approx 10 …
0
votes
0answers
15 views
WPF: How do I set a background to default in a key frame of a color animation in XAML?
From this earlier question, I learned that I can set a background to its default color in a ColorAnimation with the following:
<Storyboard>
<ColorAnimation
S …
0
votes
1answer
29 views
Simple Binding of Data from code behind to XAML
Hi,
I am new to WPF concepts. I want to just display a string in a textbox. I tried the following C# code and XAML to bind a string to a TextBox.Text property.
C# code:
public p …
0
votes
1answer
38 views
White lines around round border at high zoom level
If I zoom large enough in xamlpadx (500%) I see while lines around the inside of the border. In my app this even happens at normal zoom level in some controls.
Why is that and mo …
1
vote
1answer
25 views
Strange behaviour of Listboxes in WPF
I have a window with two listboxes both bound to an XMLDataProvider. The SelectedItem property of Listbox1 is two-way-bound to the SelectedItem property of ListBox2. So far so good …
4
votes
4answers
55 views
Setting WPF text to TextBlock
I know that TextBlock can present FlowDocument, for example:
<TextBlock Name="txtFont">
<Run Foreground="Maroon" FontFamily="Courier New" FontSize="24">Courier Ne …
0
votes
1answer
15 views
Custom WPF Control Dependency Property Not Binding to external DP
I'm trying real hard to make this short and easy to read.
I am creating a custom control that has a DP defined (RandomNumber) in the code-behind. The value of this DP is set from a …
