Extensible Application Markup Language (XAML) is an XML language used for defining user interfaces in WPF, Silverlight, Window Phone and Windows Store apps.

learn more… | top users | synonyms

1
vote
0answers
29 views

Resize DockPanel based upon child width

I'm experimenting with WPF layouts, and I'm confused on how to get something to work. I want my DockPanel to resize automagically based upon how big the labels turn out to be. Now, I've found out how ...
0
votes
1answer
27 views

Reference Parent MenuItem in ItemContainerStyle

I am trying to bind an auto-created menu item's command to an ICommand exposed by the parent MenuItem's ViewModel. The following is hopefully a good representation of what I have: Custom Control: ...
1
vote
2answers
35 views

How can I have only a * notation wpf grid column resize when the containing control is resized and not clip other columns?

I have a grid with certain column settings: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width=".25*" MinWidth="200"/> <ColumnDefinition Width="*"/> ...
0
votes
0answers
37 views

Binding to code behind from custom control

I have a GridView that has several buttons. One of them is defined by the following template: <DataTemplate x:Name="SubjectItemTemplate"> <Canvas Width="340" Height="170" ...
0
votes
2answers
52 views

Windows Phone 8 - images show correctly in XAML designer, application crash on device

So, the problem is like this: I've created a folder in solution explorer, called Images, and I've added some .png's, so the file structure looks pretty much like this: /MyProject/Images/image.png. ...
3
votes
1answer
46 views

WPF How to inherit style with color animation to change the color

I want to create a common Button style with redefined template and animations for transition between mouse in, out, up, down and disabled and enabled states. That's not a problem, but I want to make ...
-1
votes
0answers
18 views

How to convert XAML to SVG

I need to convert files in XAML format to SVG format. I saw this question Can you convert a XAML DrawingImage back into an SVG for editting?, but there is not a helpful answer. Does anybody know how ...
0
votes
2answers
41 views

Windows Phone 8: How to Bind from ICollection

I'm on windows phone 8 project and i'm new on this platform. I was doing binding from xaml side very well but i generated another new web api classes and i couldn't bind any item from ICollection. ...
0
votes
2answers
60 views

How do I get children of the a parent element

How can I get the children of a parent element? I tried like this: (block.Parent as FrameworkElement).Children but there is no Children property for FrameworkElements
2
votes
2answers
34 views

How to bind 2 CollectionViewSource to a GridView

We have two CollectionViewSource <CollectionViewSource x:Name="groupedItemsViewSource" Source="{Binding CategoryData}" IsSourceGrouped="true" ...
2
votes
2answers
497 views

Getting Camera to work well in Portrait mode

I added camera to an my App which is all in Portrait mode so would like the to keep it this way. Here is the relevant code snippets I use in my .XAML SupportedOrientations="Portrait" ...
0
votes
2answers
68 views
+50

WPF binding textblock to column in parent table, in addition parse childtable and set appropriate values to the textblock

This is my simplified XAML: <Window x:Class="MyForm.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
13
votes
4answers
5k views

WPF Trigger based on Object Type

Is there a way to do a comparison on object type for a trigger? <DataTrigger Binding="{Binding SelectedItem}" Value="SelectedItem's Type"> </DataTrigger> Background: I have a Toolbar ...
0
votes
1answer
27 views

Custom HeaderedContentControl, set header with multibinding

I'm doing a custom HeaderedContentControl which is basically is styled like this: <Style TargetType="{x:Type controls:DetailsControl}"> <Style.Resources> <!-- Only if ...
-1
votes
0answers
22 views

Range control windows phone [closed]

Are there any Range control for windows phone 7 (8)? Update: I found one here and here Thank you!
6
votes
2answers
3k views

How to rotate a WPF Window?

Is it possible to rotate a WPF Window by 45 degree, using xaml?
-1
votes
1answer
18 views

how to make shortcut tile in start screen for wondows phone 7.0

i am working on a windows phone app & the app almost completed but i dont know how to shortcut tile for my wondows phone 7.0 app. which will in start screen. and when user pin that tile then my ...
0
votes
1answer
18 views

Visual Studio WP design inside ScrollViewer

I am designing an app for Windows Phone using the Viual Studio XAML designer. My page is to long to fit into a page so I had to put it inside a ScrollViewer and Grid. This works but my problem is that ...
0
votes
1answer
457 views

Issue applying an animation using a storyboard in code

I have a Canvas with an Ellipse object named Marker: <!-- Boilerplate --> <Window x:Class="WpfApplication6.MainWindow" ...
0
votes
1answer
24 views

Binding Nested Collections

I am not understanding why the following xaml not properly grouping items. The following code creates a group for each item in the _Portfolios property of the DataContext. However, all the Program ...
0
votes
0answers
9 views

Prism App Navigation Causes “Object Reference” Error

I created a new Windows Store app project and added Prism to it. I setup the Main page to use the common infrastructure, and it all works great. I create a second Test page in the Views folder, with ...
0
votes
2answers
38 views

How do I effectively set the DataContext of a StaticResourceExtension

I am trying to reduce code duplication. Consider the following: <page...> <page.resources> <MenuItem x:Key="commonItem" /> </page.resources> <TextBlock> ...
0
votes
1answer
24 views

VS2012 Windows 8 App Designer Security Exception

I have a major problem when trying to design Windows 8 apps. I am using Visual Studio 2012 Express, Windows 8 version. When I try to load a XAML file (including newly generated ones in newly ...
0
votes
0answers
48 views

BooleanToVisibilityConverter not working

In a charting application I'm developing, I am having trouble hiding my series. I am trying to bind the visibility to my radio buttons IsChecked property.The charts are from WPF Toolkit. Here is the ...
0
votes
1answer
273 views

TwoWay Binding of a ComboBox to a static property in .NET 4.5

Well, i just posted this question, but i figured that i am not doing anything wrong. My code (and the code of all of the answers) is correct, but my dev-maschine runs with .NET4.5 which apparently has ...
1
vote
3answers
213 views

Metro App Change ListView Selected Item Content Foreground

I have a ListView and modified it's DataTemplate with 2 TextBlocks. The first TextBlock contains a Heading, the second a Sub-Heading. I style the 2 TextBlocks with different colours. Here's an ...
1
vote
0answers
7 views

How to change DependentRangeAxis in Areachart

I'm using WinRT-toolkit AreaChart, I need to change DependentRangeAxis directly in XAML code, I want to set a fixed range from 1 to 5. <Series:Chart x:Name="QuestionHistory" ...
14
votes
3answers
1k views

Why does the binding update without implementing INotifyPropertyChanged?

I created a ViewModel and bound its property to two textboxes on UI. The value of the other textbox changes when I change the value of first and focus out of the textbox but I'm not implementing ...
1
vote
2answers
37 views

Listview Checkboxes not displaying while applying themes in WPF

Hi I am getting problem with checkboxes not displaying in Listview while applying theme ThemeExpressionDark.xaml. I have collection in view model. These collection items will be binding with ...
1
vote
1answer
643 views

Set grid.row maxheight by binding

I've a WPF application with a main grid with 4 rows. I wont to bind the property MaxHeight of the row(0) by XAML or code behind to the Height value of the control inside. The control inside row(0) is ...
1
vote
1answer
164 views

WPF: How do I access the rendered dimensions of a Path in XAML?

I am trying to overlay text content on top of a region described by a Path. The Path is in a ViewBox wrapped Canvas so that it can scale to any size. The TextBlock is in a Canvas wrapped Grid that is ...
4
votes
2answers
3k views

WPF: Binding the height of a component to another's

I have, in a window, a Grid that contains a RadioButton, a TextBox and a Button, each in column 0, 1, 2, respectively. They all have their heights set to auto. Then, in another part of the window, I ...
2
votes
2answers
552 views

Binding position to ActualHeight

I want to bind a lists position to its own height in XAML. So its lower left corner always will be at 0.0 of the canvas. I'm using elementBinding to get the ActualHeight and a converter to invert the ...
3
votes
2answers
1k views

Bind to ActualHeight of Item ItemsControl

I have two separate ItemsControls that appear side by side. The ItemsControls bind to the same ItemsSource, but they display the data differently. Each item displayed on the left will most likely be ...
1
vote
1answer
223 views

Obtain Access Into the Camera Roll Windows Phone 8

I am having an issue getting into the camera roll folder for Windows Phone 8. Unfortunately due to the project being a MonoGame Project, the MediaLibrary object is not implemented and thus does not ...
2
votes
0answers
32 views

Many to Many (Students , classes example) Datagrid xaml binding

I have a WPF / entity framework application, my model have student , class entities there is a many to many association/relation between student and class (student can have many classes and class ...
0
votes
2answers
740 views

How bad binding and converter errors. Should I handle them somehow?

I have errors like this because my controls self-bind. It doesn't hurt anything as far as I can tell but I wonder if I should worry about this? System.Windows.Data Error: BindingExpression path ...
0
votes
3answers
42 views

Enum localization using Binding and different languages

I try to find solution to output localized enums from resources using Binding. Now I bind enums by common way like that: <Page.Resources> <ObjectDataProvider x:Key="RootConverterType" ...
0
votes
1answer
31 views

Arranging Grid items depending on other items' visibility

I have a Panel that shows Labels, TextBoxes, and ComboBoxes and the code behind sets the visibility to visible or collapsed depending upon the user's choice from a ComboBox outside of said Panel. ...
-1
votes
0answers
13 views

Windows 8 databound ListView with multiselect using MVVM

I am working on a Windows 8 project and one of the issues I'm running into is creating a databound ListView control that allows the users to select multiple items using the MVVM design pattern. Blog ...
0
votes
1answer
19 views

How do i adjust font size of a textblock with respect to the Text Length in Windows 8 xaml

I am using a Textblock in a Listbox Template . Where i wants to vary the Textblock Size with respect to the Content Text. Small Text --> Large FontSize && Large Text --> Small font Size So ...
0
votes
1answer
20 views

Combobox binded to Dictonary and retreiving the associated dictionary key

I have a ComboBox, and I have bound a Dictionary to it. Here is the code: <ComboBox Height="24" Name="comboBoxQuery" Width="300" ItemsSource="{Binding QueryNames}" SelectedItem="{Binding ...
0
votes
1answer
216 views

Use of ItemsControl ActualHeight to paginate a printed XAML form?

I need to generate a printed form using XAML that has a header grid and a variable number of rows that can result in multiple pages as the number of rows increases. The header must appear on each page ...
1
vote
1answer
292 views

Binding Width to ActualHeight - only partially working

I am trying to bind an image's Width to its ActualHeight (height is determined by layout and I want it to be square - if there's a better way of doing this, I'd love to hear). This is my XAML: ...
1
vote
1answer
390 views

ActualHeight and ActualWidth of object is always zero

I have a Canvas with a TextBlock like so: <Canvas x:Name="ContentPanel" Grid.Row="1" DoubleTapped="ContentPanel_DoubleTapped"> <TextBlock x:Name="WordBlock" FontSize="226.667" ...
1
vote
3answers
2k views

WPF - Binding and RenderTransform

I would like to bind a scaleTransform to a converter passing the ActualWidth or ActualHeight. Here what I want to do : <Canvas x:Name="Canevas"> <Canvas.RenderTransform> ...
0
votes
2answers
466 views

Attached Behavior handling an Attached Event in WPF

I googled regarding this question but couldn't gather any information and I was wondering if it is possible for an attached behavior to handle an attached event?? I've an event declared in a class ...
1
vote
1answer
32 views

update GUI for SelectedeRow values of wpf datagrid

I have a wpf (.Net 4.5) datagrid. I am using the MVVM pattern for my application with the MVVM-Light framework. I have a datagrid that is bound to an observable collection of "Tracking" objects ...
-1
votes
1answer
29 views

Databinding a Textblock in WPF

How does one simply "Databind a textblock to a codebehind C# variable"? In my codebehind I have a public string variable and in my XAML I have but it does not work. Thanks in advance!
1
vote
1answer
236 views

Windows8 Getting Error “Layout cycle detected. Layout could not complete.” on touch of Custom Control Date Picker

I have created a custom control for date picker n Wndows8 App using C# and Xaml. When I am using my mouse to expand comboBox for date or Month or Year its working fine when I am using touch screen and ...

1 2 3 4 5 335