Extensible Application Markup Language (XAML) is an XML language used for defining user interfaces in WPF and Silverlight

learn more… | top users | synonyms

0
votes
2answers
711 views

WPF Error when implementing Login.xaml

I am getting the following exception: "Nullable object must have a value" Everything was working when I was using StartupURI="MainWindow.xaml" but I wanted to implement a login screen so I ...
0
votes
1answer
1k views

How to define descending sort order (in XAML) for DataGrid in SL/WPF?

In order to define column sorting the SortMemberPath can be used. But how can I define that this column shall be sorted descending?
1
vote
1answer
485 views

Bind boolean value

I have been working on a C# 4.0 WPF project and need to figure out how to databind a Boolean value. I have a reference to my Application.Current object in a window. My "App" object contains a ...
6
votes
2answers
2k views

WPF DataGrid inside Accordion height issue

I am using the latest WPF Toolkit but am running into a height issue when I have a large record set bound into a datagrid inside an AccordionItem item. The height of the Accordion itself scales nicely ...
1
vote
1answer
216 views

XAML Deserialization problem

I have a block of XAML of which i'm trying to deserialize. For arguments sake lets say it looks like below. <NS:SomeObject> <NS:SomeObject.SomeProperty> <NS:SomeDifferentObject ...
1
vote
3answers
1k views

In WPF how to define a Data template in case of enum?

I have a Enum defined as Type public Enum **Type** { OneType, TwoType, ThreeType }; Now I bind Type to a drop down Ribbon Control Drop Down Menu in a Ribbon Control that displays each menu ...
2
votes
2answers
1k views

How to convert a dynamic XAML into a PNG or GIF using C#?

I'm creating dynamic templated XAML designs that I would like to convert to PNG or GIF from my C# code. Any ideas?
2
votes
2answers
136 views

WPF binding only inside XAML (simple question)

Why this works <myToolTip:UserControl1> <TextBlock Text="{Binding Path=TestString, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type myToolTip:UserControl1}}}"/> ...
2
votes
2answers
473 views

WPF scrollviewer

Is there a posibility to scroll to a specific place in a ScrollViewer from your code behind? So something like the Slider element you can change the value property...
6
votes
4answers
999 views

How to have a control fill all available space

I have a xaml code: <Grid> <WrapPanel> <TextBox ></TextBox> <Button Content="GetIt" /> </WrapPanel> </Grid> How i can to get all available ...
1
vote
0answers
157 views

auto focus camera on model

I have the following model <MeshGeometry3D x:Key="SphereOR10GR13" Positions="121.4130 33.9882 64.3701 85.0383 102.2932 168.1890 0.0000 0.0000 0.0000 68.8637 96.3488 159.4094 82.9020 ...
9
votes
3answers
5k views

In WPF XAML how can I concatenate 2 constants so I can use pre-define paths?

I'm new to XAML, so presume I'm missing something simple. I want to replace the path part of the source path with a c# constant for easier path management, for example I have: <Image ...
0
votes
2answers
609 views

datatrigger

I have a UserControl in XAML with a couple of buttons.... When the "VideoEnable" property in my C# code change to true i want to change the color of a button. The following code compiles but crashes ...
2
votes
0answers
60 views

Creating a burn effect in Silverlight

Does anyone know of a tutorial on how to create a burn effect in Silverlight?
6
votes
2answers
4k views

WPF Key-Binding- Can I create a single key-binding that fires a command every time control is pressed with any number and then passes the number to the command as a parameter?

I need to create hot-keys for every control + number combination and would prefer not to have create ten commands. Is there any way to do this?
0
votes
1answer
306 views

How to bind a property defined as usercontrol in XAML?

In XAML (Root is a UserControl), I have defined a grid with two columns. In a ViewModel layer, I have defined a property as UserControl. The ViewModel is set as DataContext of the XAML. How I can ...
5
votes
3answers
658 views

Is it possible to seletively color a wrapping TextBlock in Silverlight/WPF

For instance, if I have a TextBlock: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis ...
0
votes
2answers
1k views

Split WPF Style XAML Files

Most WPF styles I have seen are split up into one very long Theme.xaml file. I want to split mine up for readability so my Theme.xaml looks like this: <ResourceDictionary ...
2
votes
3answers
856 views

Can I get a WPF ListBox to inherit brushes from parent element?

My WPF window has its foreground brush set to a brush from a resource dictionary, and I want all text in the window to have this color, so I don't touch the foreground brush in anything else. ...
0
votes
2answers
1k views

How to set an event for all cells in WPF Datagrid

I need OnDragEnter event for every cell on my WPF Datagrid. I tried this : <ControlTemplate TargetType="{x:Type my:DataGridCell}" x:Key="RowTemplate"> <ContentPresenter ...
3
votes
1answer
10k views

Animate button on MouseOver and MouseDown

I'm making my own ControlTemplate for a standard Button in WPF. I want to change the background of my button when the user hovers over the button with the mouse, but also when the user presses the ...
1
vote
1answer
894 views

How do I stop a routed event from triggering on specific places in XAML?

I have the following situation: A stackpanel contains a number of elements, including some that are contained in a GroupBox. So something like this: <StackPanel x:Name="stackpanel" ...
6
votes
3answers
11k views

Current Date in Silverlight XAML TextBlock

I am coming from Flex where you can do just about anything inside of curly braces. I am trying to get a TextBlock to display today's Date and Time without just coding it in C#. I have tried many ...
2
votes
3answers
2k views

In pure XAML, is it possible to get a Line to align to part of a Grid?

Is it possible to create a Line in XAML (without any C# code behind) to align a line inside of a layout container such as a Grid? I'd like to effectively have: <Grid> <Line ...
1
vote
1answer
1k views

WPF Menu Items Styles

I have an application resource of the following <Style TargetType="{x:Type TextBlock}"> <Setter Property="Background" Value="{DynamicResource windowTextBackColor}"/> <Setter ...
0
votes
2answers
3k views

How do I format the contents of a DataGrid cell as a Date? as Currency?

I have a Silverlight DataGrid that's being populated with different types of data for each column. I'm trying to figure out how to format some of the contents of the DataGrid's cells, specifically ...
2
votes
2answers
3k views

How do bind a List<object> to a DataGrid in Silverlight?

I'm trying to create a simple Silverlight application that involves parsing a CSV file and displaying the results in a DataGrid. I've configured my application to parse the CSV file to return a ...
1
vote
1answer
969 views

XAML get new width and height for Canvas

I have searched through many times but have not seen this before. Probably really simple question but can't wrap my head around it. Wrote a VSTO add-in for Excel that draws a Grid dynamically. Then ...
1
vote
1answer
648 views

Problem with derived ControlTemplates in WPF

The following xaml code works: <Window x:Class="DerivedTemplateBug.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
3
votes
1answer
94 views

Is there a way to include namespaces in xaml so I don't have to write the extension?

Is there a way to do 'using' in XAML i.e. declare a namespace and include it in the general xaml scope so I don't have to write namespace:Class, just Class.
0
votes
1answer
141 views

Hmm… “add as link”ed images don't show up at runtime

Sorry guys, I posted this earlier today where my "add as link"ed images were giving me a design-time error. I got assistance with that and now my code compiles, but now the images don't even appear ...
0
votes
3answers
312 views

Why does the Image element give me a design-time error with “add as link”ed images?

I need to display an image, which I've done without problems before, but today I decided to be tricky and use "add as link" instead. Well, now I get: The file Images/hello.png is not part of the ...
1
vote
1answer
412 views

WPF: Cannot set items of a read-only collection in XAML

The scenario is really simple. I have a read-only collection property of my custom control, and I want set the items of the collection in XAML. Like this: <l:CustomControl> ...
1
vote
0answers
64 views

Is it possible to use multibinding in WF (with ActivityBind)?

I would like to bind multiple dependency properties of other activites to a dependency property (of type object[]) in my custom activity. Is it possible to define this multibinding : In the ...
1
vote
1answer
260 views

Lighter-weight elements - how does one gauge/know the weight of an element?

I'm working on the UI side of a WPF project. My favourite reference while xaml'ing (besides stackoverflow :) ) at the moment is Adam Nathan's "Windows Presentation Foundation Unleashed". He gives the ...
1
vote
1answer
1k views

How do I bind to a RowDefinition's height?

In this example code, I'm trying to offset the Grid's Canvas position by the height of one of its rows. Does anyone see what I might be doing wrong? As you can see, I tried moving the binding lower ...
1
vote
2answers
141 views

IronRuby and XAML Databinding

Does anyone know if Microsoft plans on implementing XAML (declarative) databinding of IronRuby objects for Silverlight and WPF? Without it, using IronRuby for Silverlight/WPF development really isn't ...
0
votes
1answer
679 views

How to convert Silverlight XAML to Resource dictionary in Silverlight 2

I am looking for the quickest and easiest way to combine two silverlight projects. Once has controls all in Silverlight XAML the other is template driven and uses a template based on a Silverlight ...
1
vote
1answer
1k views

Applying a style to a gridview

I have been tearing my hair out all afternoon on this, hopefully someone can help me. Bear with me on this one. I have a number of styles in my App.xaml which transforms a gridview, the code looks ...
0
votes
1answer
376 views

How to call a method or use a variable from a different namespace in another class in another namespace in a xaml file?

How to call a method or use a variable from a different namespace in another class in another namespace in a xaml file?
1
vote
0answers
380 views

Binding a CollectionViewSource in a ControlTemplate

I am trying to create a ControlTemplate which will merge 2 IQueryables (and some other things) into a CompositeCollection. I am having issues getting the CollectionViewSource.Source to bind correctly ...
3
votes
1answer
1k views

XAML Parsing Exception

I have a simple XAML page that load fine when it is loaded as part of any application within Visual Studio. However, when I deploy this application using ClickOnce, I get the following exception: ...
0
votes
2answers
1k views

WPF DockPanel doesn't respect the “Filled” control's desired size

I have the following Xaml (simplified for brevity, but will repro the problem in Xamlpad or Kaxaml): <DockPanel Width="400"> <TextBlock DockPanel.Dock="Left" TextWrapping="Wrap"> ...
0
votes
1answer
159 views

Animating properties of the content of a template in Silverlight

Let's say I have a control like this: <Button Style="{StaticResource MyButton}"> <Polygon Style="{StaticResource MyButtonIcon}" Points="... some points ..." /> ...
12
votes
4answers
29k views

Style the MouseOver on a Silverlight/WPF button

Struggling with styling the mouse over for a button ... I have managed to style the button (solid red), but I would like for it to change to solid black whenever a mouse over occurs. I am new to XAML, ...
0
votes
1answer
161 views

How do I display data in a table and allow users to copy selected data?

I have a long list of data that I want to display in table format to users. The data changes when the user performs certain actions in my app, but it is not directly editable. So the user can create a ...
5
votes
2answers
557 views

Is it possible to seletively color a label in Silverlight?

For instance, if I have a label: Blah blah bladity blah I want the first 10% of this label, such that the font color should be red, and the rest should be green. This perhaps means it would color ...
6
votes
1answer
6k views

XAML: make a ScrollViewer show scrollbars when the ScaleTransform of a child object gets big

I am making a sort of "print preview" control for some documents in my Silverlight 3 application. I have a Canvas (for showing the document) inside of a ScrollViewer, and I have zoom in / zoom out ...
1
vote
1answer
5k views

Replace contents WPF grid control by grid in other XAML file

I'm trying to replace the content of a WPF grid control by another WPF grid defined in a second XAML file in code (c#). (simplified example) Window1.xaml: <Window x:Class="Demo1.Window1" ...
1
vote
2answers
212 views

Small balloon/box appear near nofityicon

I once have noticied when my Adobe Reader was updating, I saw a small balloon like it always has been. But then I wondered how I could make one of my own balloon/box/border things near my notifyicon. ...

1 284 285 286 287 288 325