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

0
votes
2answers
17 views

Binding a dataset/DataTable to a xaml datagrid

I want to display a datagrid in my UI. I am binding it to a dataset in my viewmodel. Here is the code: View: <StackPanel Orientation="Horizontal" Height="Auto" Name="stackPanel4" ...
0
votes
0answers
15 views

The object 'Label' already has a child and cannot add ''. 'Label' can accept only one child

I am trying to use a helper class that another SO user provided me to apply stringformatting on a label. However, when I apply his solution, I get the following error : The object 'Label' already ...
0
votes
0answers
16 views

Binding a menuitem to a group

I have the following xaml to which am dynamically binding menuitems, How can i group the menuitems to use the checkable property. So that I am able to select only one menuitem at a time in a ...
0
votes
1answer
21 views

ListView displays certain images but won't display others

I'm trying to get certain images to display on the side of the scrolling item list created by ListView. Right now I'm using the data template from ...
0
votes
0answers
12 views

Implementing a Windows 8 app with nested navigation

I'm currently developing an app for Windows 8 which should provide nested navigation. The main view is split into 3 parts, a menu area on the left side, a Content area and a Header. Both the menu and ...
-1
votes
0answers
15 views

DataGridCheckBoxColumn IsReadOnly property binding

I would like to have the checkbox column in my datagrid enabled/disabled for each row depending on a value in a collection. I have an ObservableCollection called AccountComponents that is a collection ...
0
votes
0answers
33 views

How to use DI with WinRT

In a WinRT Page how can inject dependencies? I am thinking of doing something like this: /// <summary> /// A page that displays an overview of a single group, including a preview of the items ...
0
votes
0answers
18 views

Master-detail in XAML with - managing ListView selection through binding/commands whilst allowing cancellation

I'm attempting to build a WPF application for demonstration that follows the best possible MVVM practices, and I've found quickly that I'm not sure what the best practices are! :) I have a specific ...
0
votes
0answers
7 views

Binding issue with groupedview Windows 8 App XAML/C#

A time ago I have asked how to implement a GroupedView and it worked quiet well, but now I have a problem. In my new App, the Grouped view only shows the GroupHeadings, but not the elements. The ...
1
vote
1answer
23 views

C# WPF - Build issues between Windows 7 & 8

Has anyone else found issues when building a .net4 C# WPF application in Windows 7 and then Windows 8 using VS2010? For example, I have XAML TextBlocks bound to a DataContext, and when building the ...
1
vote
1answer
18 views

DataTemplate Namespace Not Found

I have the following xaml code which is trying to reference the DataTemplate Selector below. However I am getting a namespace error. I have tried the following variations to try to import the Selector ...
0
votes
0answers
23 views

XAML DataTemplate of View ViewModel how to refer to it when using an attached behavior?

I have a WPF app with one window that has a viewmodel that hosts several user controls (with their own viewmodels) inside that main window, in a ContentControl. I set up the view models for all my ...
2
votes
0answers
34 views

Chaining (Dependency) Properties to nested control

I have a ListBox with a GroupStyle that contains another ListBox. Now I want to filter the Items of the nested ListBox depending on the group name of the parent ListBox. In the code below I tried to ...
0
votes
1answer
10 views

Windows 8 - XAML - Conditional background for row in ListView

I have a data source with items in it. Each item has a boolean called "IsAvailable". I want to render the datasource in a ListView. The background of each row must be green if "IsAvailable" = true or ...
0
votes
1answer
15 views

How do I disable user input on a WebView?

I'm having tons of issues trying to integrate Microsoft's WebView in my WinRT application and one of them is the following. I want to display the WebView and its content (which comes from a local ...
0
votes
0answers
15 views

Using Style Trigger to change string format of a GridView header

I am trying to change the format of a header in my gridview based on the contents of a boolean flag. <ListView.Resources> <Style TargetType="GridViewColumnHeader" ...
0
votes
1answer
19 views

c#.net XamlReader.Parse method not avilable/missing?

I am developing a WCF REST web service in c# (.net Framework 3.5, using Visual Studio 2010) which pulls rows from an MSSQL DB. One of the columns that gets pulled is type "nvarchar(max)" and always ...
0
votes
0answers
14 views

Custom AutoSuggest and Editable ComboBox in Silverlight

I am trying to make a autoComplete TypeIn ComboBox. This is where I reused the code piece from. Now the Problem is when i typeIn the Names in the ComboBox the Input-text gets compared to the ...
2
votes
1answer
18 views

WPF DatePicker show DateTime.Today OR Binding

What is the best way to have a WPF DatePicker show a predefined DateTime (e.g. DateTime.Today) while still maintaining binding? SelectedDate="{x:Static sys:DateTime.Today}" and Text="{Binding ...
2
votes
0answers
29 views

How to pass IDataErrorInfo Validation through an wrapper to the XAML

At the moment i'm facing an ridiculous problem which i'm not able to fix I wrote a little wrapper which wraps almost any Property and added one Property but i don't know how to pass the Validation ...
0
votes
3answers
25 views

How To Pass Button Properties from XAML to .CS File

I am new to c#. i want to pass button properties from xaml file to .cs file. How can i do it? <Button Content="myButton" x:Name="{Binding assignment_title}" click="btn_Click()"/> Here I want ...
1
vote
1answer
18 views

How to bind data in gridview format in windows phone?

Hi i am developing windows phone 8 app.i want to display image on grid view format and i am using listbox inside grid but i didn't get any changes in my output.my code is given below,I want display ...
0
votes
2answers
28 views

PriorityBinding - Use different StringFormat for each binding in a Label

In my WPF project, I have a Label: <Label Grid.Column="1" Grid.Row="1"> <PriorityBinding> <Binding Path="Worker.Employer.Name" StringFormat="Employer: {0}" /> ...
0
votes
0answers
14 views

MediaElement not playing on WP7

I developed an app for Windows Phone 8 which plays MediaElements. I am now porting the app to Windows Phone 7. But it seems the MediaElements will not play on WP7? My xaml: <MediaElement ...
1
vote
1answer
20 views

The blank space above font ascender line in TextBlock

I found there was a space at the top of TextBlock, above the line of ascender (as the red arrow shows in picture), even when TextBlock.VerticalAlignment = Top, Padding=0 and TextBlock.Height = Auto. ...
0
votes
0answers
25 views

error creating in .xaml when creating in .xaml.cs backing code works

I am having a strange issue where creating my class that derives from Caliburn.Micro.Autofac.AutofacBootstrapper in my App.xaml fails with a build error: The tag 'Bootstrapper' does not exist in XML ...
0
votes
0answers
34 views

How does WPF determine focus?

My quandary is this: how does [whatever code that fires off LostFocus event] determine that it no longer has focus when child elements of the content may not be hit test visible? Semi-relevant ...
0
votes
0answers
13 views

Silverlight 5 c# how to capture the layer on i was clicked

i have the next problem, i'm making one app in silverlight 5 c# whit sdk Esri and i have de the XAML <Grid x:Name="LayoutRoot" > <Grid.ColumnDefinitions> ...
-1
votes
1answer
17 views

Scroll in design view for metro style app in Visual Studio 2012

I am working on a metro style app (XAML) in Visual Studio 2012. I am building a form that flows vertically on the screen that the user will have to scroll. I would like to be able to see the form in ...
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
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" ...
-1
votes
0answers
19 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 ...
1
vote
2answers
57 views

XAML/WPF zoom to a specific area on a canvas

So I have a WPF window with a grid which has 2 columns. In the first column I have a canvas which I am rendering an SVG image to. This canvas is re-sized to be the same size as the image (so there are ...
0
votes
1answer
32 views

Dynamic Controls for PhoneApplicationPage

i want to show a detail page of a model. depending on the type of the model (defined as a string property) i want to display certain controls (image, text, media .. ) in pseudo code i image it would ...
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
-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!
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 ...
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. ...
-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
28 views

How to place a ContextMenu in a ListBox

I am trying to place a ContextMenu within the DataTemplate of my ListBox. The ListBox is placed within a PivotItem. For some reason, the ContextMenu does not show up with an item in the ListBox is ...
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
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: ...
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 ...
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 ...
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
27 views

RowVirtualization cause incorrect background color for rows

I have a WPF application and there is a Datagrid in some pages. This datagrid needs to load 5000 rows at once (Pagination is not an option for me) and this takes ages. I set ...
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" ...
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" ...
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> ...

1 2 3 4 5 335