Tagged Questions

2
votes
2answers
11 views

Embed a System.String in XAML

Is there a way to embed a string in XAML, give it and ID and refer to it later. I have tried: <Window x:Class="WpfApp1.Window1" …
0
votes
2answers
16 views

How to make simple combobox with selected value in XAML?

What is the correct syntax to select a combobox item with value (not index) in pure XAML? Doesn't work: <StackPanel> <ComboBox SelectedValue="CA"> <ComboBoxItem …
1
vote
1answer
19 views

Silverlight grid with auto width and height

Silverlight virgin here. How do I make the usercontrol surrounding my grid automatically resize to accomodate the grid width inside? Currently the usercontrol is displaying at about 300 or 400 pixels …
3
votes
1answer
50 views

Displaying ® symbol in Silverlight.

Folks! I am trying to display ® and superscript TM symbols in my silverlight app. I want to save the text containing the symbols in a resx file. Things i have tried: Copy paste the ® symbol …
0
votes
2answers
37 views

How can make all my user control dependency values load before they control accesses their values?

When I call this custom control, I have to put the attribute values in the correct order since the third dependency property (ItemTypeIdCode) accesses the values of the first two (KeyField, …
4
votes
2answers
86 views

What is the best way to reuse blocks of XAML?

I've got many user controls like this: PageManageCustomers.xaml.cs: public partial class PageManageCustomers : BasePage { ... } which inherit from: PageBase.cs: public class BasePage : …
0
votes
1answer
18 views

Why does my Custom UserControl’s dependency property not work with binding?

My Custom UserControl's dependency property will bind correctly if the value is statically defined in the XAML calling it, like this: ItemTypeIdCode="addresses" but not if the value is bound …
0
votes
1answer
16 views

Translate XAML EventTrigger to C# Code..

Can anyone tell me how this would look like in C#? <EventTrigger RoutedEvent="Button.Click" SourceName="btnSplit"> <EventTrigger.Actions> …
0
votes
2answers
18 views

Is it possible to use XamlReader from a XAML file to load in a block of XAML text?

I use the following DataTemplate in many controls: <pages:BasePageManageItems x:Class="TestApp.Pages.PageManageAddresses" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" …
2
votes
3answers
40 views

Does Mono support XAML?

Does Mono support XAML? Specifically I'm thinking of switching to using XAML for new GUI work that I do but also I like to keep my personal projects compilable in Mono. Should I just stick with plain …
0
votes
2answers
37 views

WPF - TextBlock - Format Text Progrmatically

In the TextBlock object you can format the text in the XAML like this: <TextBlock> <Bold>bold text</Bold> random non bold next </TextBlock> How do you do the "Bold" tags …
1
vote
1answer
32 views

Programatically Accessing a Silverlight Static Resource

I'd like to programatically access static resources much as I would in XAML: <TextBlock Text="{Binding Source={StaticResource My.Text.Key}}" /> This works whether my static resource is …
0
votes
3answers
46 views

Using GraphViz in a WPF application

I want to use GraphViz in my WPF application without installing Graphviz. Does AT&T (or somebody else) distribute such a DLL? Thanks, Kemal
0
votes
2answers
41 views

How to process multiple where clauses in a LINQ statement?

Thanks to those who answered my last question I got the code below to work which allows the developer to send multiple where clauses to a method which includes each of them in a LINQ statement. …
1
vote
3answers
27 views

Style a border with a different brush color for each corner

I have created a static resource defining the border of a specific item in my xaml, but I can't find a good way to define a unique color for each side! xaml: <Border Style="{StaticResource …

1 2 3 4 5 99 next
15 30 50 per page