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

6
votes
2answers
77 views

Identical ListViews display differently - Columns don't stretch on one

I have run into a bizarre problem. I am displaying a UserControl within a UserControl and at the moment each contains a completely identical ListView, as in I copied and pasted it from one to the ...
0
votes
0answers
13 views

Showing related field in Silverlight Datagrid

I'm really hoping one of you can help me here. I've searched my day away and have found many topics related to my issue, but none of them have corrected the problem. In short, I have two tables ...
0
votes
1answer
23 views

Getting information from child element of stackpanel within listbox

I know there should be a simple solution to this question but I just cant seem to figure it out here is what my code looks like: <ListBox HorizontalAlignment="Left" x:Name="locationsNB" ...
0
votes
0answers
13 views

Insert content into RichTextBlock

This is in a Windows 8 store app. I already asked this here, but my question was never answered to satisfaction. I know you can add a created block to the end of a RichTextBlock.Blocks collection, ...
2
votes
3answers
25 views

WPF NullReferenceException when XAML element is referenced in code

Here's my code: public partial class MainWindow : Window { public MainWindow() { //myOnlyGrid = new Grid(); Chart MyChart = new Chart(); ColumnSeries b = new ...
0
votes
1answer
29 views

Multiple ItemSource for one control

I have a listbox #1 below with multple textblock item templates: <ListBox Grid.Row="2" x:Name="ItemListBox" ItemsSource="{Binding Files}" ...
0
votes
1answer
51 views

Disabling a button based on DataGrid DataGridTextColumn Validation failure

I'm using a System.Windows.Controls.DataGrid (WPF, .NET 4.0, C#). If a cell's validation fails (HasErrors == TRUE) the OK button should be gray (IsEnabled = FALSE). The DataGrid validation is ...
3
votes
1answer
25 views

Creating template for indexed property

I have a view model that contains a collection of Item Attributes, which in turn each contain a path to an image. There may be anywhere from 0 .. N item attributes in the collection. A stackpanel in ...
0
votes
2answers
28 views

ComboBox (two-way) binding to object property

In the database, table TblPerson has a CHAR(1) field called Gender with a check constraint on possible values null, 'M' and 'F' I'm trying to display (and two-way bind) the (EF mapped to type string) ...
1
vote
2answers
38 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 ...
0
votes
1answer
32 views

Populating a listview with checkboxes from a XAML file

First, many thanks to Dave Clemmer and Jasti for getting me this far! I've got a listview that looks like this (except a Load button has been added since this screen shot was taken): Here's the ...
0
votes
1answer
28 views

programatically duplicate xaml control in WP

I'm not getting how I could duplicate a XAML element pgrogramatically. For example if I define on XAML a rectangle om the middle of the screen, the user presses a button and I would like to duplicate ...
0
votes
1answer
41 views

Windows Phone Toolkit ListPicker background is White

I have a Windows Phone 8 app. My app uses the ListPicker from the Toolkit. My app appears just fine. However, when I expand the ListPicker, the background is White. I can't read any of the items' ...
2
votes
2answers
40 views

Windows Phone Toolkit ListPicker Throws an Unhandled Exception

I'm working on a Windows Phone 8 app. My app uses the ListPicker from the Tookit. My code in question looks like the following: <toolkit:ListPicker x:Name="myListPicker" Margin="12,-6,12,-2" ...
0
votes
2answers
59 views

Windows Phone 8: Back Button

I'm new on windows phone platform. I'm trying to make a news application. On this application, user clicks and reads the article of news, after, user wants to came back to mainpage to see all news ...
0
votes
2answers
25 views

Is it possible in WPF to define multiple 'keyed'-Styles but with differing TargetTypes?

I am trying to get to grips with WPF Styles. I was wondering if it is possible to define one Style key and then describe how it should be applied to different TargetTypes. This approach is not ...
1
vote
0answers
13 views

XAML designer in VS2012/Blend not redrawing properly

I have a dev box with Windows 8 + VS2012 Update 2 on top. Ever since I had this system, the XAML designer has been behaving weird (for Win8 and WPF as well): it redraws only every second time. ...
0
votes
0answers
25 views

WP8 Stop LongListSelector bound to ObservableCollection from jumping to top after Remove

I got a LongListSelector bound to an ObservableCollection. I got an update method that merges 2 lists and Inserts new items to the ObservableCollection. public static void MergeList ...
0
votes
1answer
25 views

System.Threading.Thread replacement in windows store apps

Is it right that 'System.Threading.Thread' douesn't exist in Windows Store Apps? And if it is, what is the replacement (I want to run a function in the background so the UI douesn't freez while ...
3
votes
0answers
38 views

Setting property of class type with TypeConverter from Property Panel produces expanded XAML, not string

I'm trying to create a User Control with a property whose type is a class I've defined. I'm using a TypeConverter to allow the property to be processed as a string. The application correctly handles ...
1
vote
1answer
49 views

TabControls containing different user controls using MVVM

I am making a WPF application following MVVM. What I want in my application is that there is a View which contains some common buttons and text boxes and a TabControl. TabControl will basically host ...
0
votes
1answer
25 views

long list selector not scrolling properly

My LongListSelector is not scrolling properly. When I scroll the list, it automatically reaching back to the top with its rubber band effect. xaml is <Grid x:Name="ContentPanel" ...
0
votes
1answer
21 views

XAML binding windows phone template

I have a page showing pics with text below it (like a Tile), In xaml I simply bind to a image and text property, and then in the c# code I set the listbox's itemssource to my specific data. Now ...
0
votes
2answers
39 views

How do people usually implement multilanguage in Silverlight/XAML?

I'm trying to implement an interface to offer multilanguage support. For the sake simplicity, I will pose an example in XAML: <TextBlock Text="Type" Grid.Column="0" Grid.Row="0" ...
2
votes
1answer
84 views

Wpf merged resource dictionary no being recognized from app.xaml

I have a WPF .net 4.5 application where I am having trouble merging resource dictionaries. I have the exact same problem as This SO question and This Question but the accepted solution does not work ...
0
votes
1answer
73 views

Windows 8 XAML: Displaying a list of images in a GridView through data binding

I am trying to write a Windows 8 app in C# in which I want to display a list of images that the user selects through FileOpenPicker. I wish to display these images in a GridView using XAML ...
0
votes
3answers
35 views

TextBlock and Image inside Dockpanel

I have the below code. I am trying to place the image directly to the right of the textblock within the border, but the image is almost touching the right side of the screen. How can I allign the ...
0
votes
0answers
23 views

WPF transitions using image masks

I have a WPF application that I need to transition between charts. I am trying to make an image move across the screen and, behind it, reveal the next chart. I want the places the image has already ...
0
votes
2answers
19 views

Xaml Grid Styling

New to WPF, I'm having some trouble creating a styles in my code, I was able to make some buttons styles by drawing rectangles and making them into buttons, this opened a template editor so I was able ...
0
votes
0answers
60 views

Direct Coding XAML in C# (WPF)

Is there a way to directly write XAML code for a bound variable in C#? What I mean by this is, if I have an XAML object databound to a C# variable, would I be able to directly write XAML code for that ...
0
votes
1answer
17 views

TextRadioButtonStyle pointer over problems in Windows Store app

UPDATE 1 Here's my sample project I am using TextRadioButtonStyle in my app. When I move pointer over radio button it becomes white but when pointer is out from the button the original foreground ...
0
votes
0answers
19 views

How to get XAML Listview with full-row selection and correct theme

I'm taking over some code that has a XAML Listview in it. I noticed the current Listview does not have full-row selection; that is, you cannot click anywhere in the row to select an item, but must ...
1
vote
1answer
31 views

Line disappears after some seconds in windows store apps

I'm trying to display some lines in a windows store app. I use the following XAML code for that: <Line Stroke="White" Width="5" X1="100" Y1="100" X2="200" Y2="500" Grid.Row="1"/> The rest of ...
1
vote
2answers
29 views

WPF DataGrid CurrentItem is null

I have a WPF toolkit DataGrid that is bound to an observable collection of objects in the view model. In this DataGrid, I have defined a DataGridTemplateColumn for a certain field of that object. ...
1
vote
1answer
57 views

In Wpf how do I send a command from a button to a child control?

So I have a zoom-in-button placed in a menu bar, and several levels down there is a control I would like to have take the zoom in command and zoom in on the object being viewed and redraw. As I ...
0
votes
0answers
38 views

Does anyone know the cause/fix of a custom activity xaml x:members arguments not being added?

I have a custom activity library that has a couple of activities all worked fine. However at some point I must have changed something that stopped the xaml x:members section from being created. No ...
0
votes
2answers
17 views

Blend Pen tool and XAML syntax

I am trying create a basic shape with the Pen tool. All I want is an 'S' like shape that is essentially rotated clockwise 90 degrees. I can't use a TextBlock and just rotate an 'S' though. The reason ...
1
vote
0answers
24 views

How to check whether Bing Advertisment returns error code / is not active?

I've got a Windows 8 application (C#/XAML) and added advertising with the Bing Advertising SDK. Works well! But sometimes, when there are no ads to display, the space is empty. I wonder if I can ...
0
votes
1answer
30 views

Bind method result to a Silverlight XAML TextBlock

I have a function which, given a string, returns the string translated to German, linked to the xaml I want to edit: public string convert (string label) { return Translator.translate (label); } ...
0
votes
2answers
26 views

Lines in a windows store app

Just a simple question: I'm developing a Windows store app and for one function I want to show an intercept theorm. For that (now my question) I need some lines. Do I need to create an Image or is ...
0
votes
2answers
51 views

Best way to calculate data from a listbox

I want to calculate average etc. on lap data which is stored in a listbox like: XX:XX:XX:XXX but not sure how/what the best approach would be. For example would it be best to put the items in the ...
1
vote
0answers
20 views

Change KinectTileButton selected color

I am displaying a clipped image (round shape) inside a KinectTileButton. The problem is that I don't know how to change the Selected behavior. By default, when the button gets clicked, the entire area ...
0
votes
2answers
35 views

Show HTML Text in TextBlock-Control

I try to get HTML-Text in a TextBock without HTML-Tags. DO anyone know, if it is possible to show html-Text in a TextBlock Control? Have I to use a WebBrowser Control for this case. I use simple ...
2
votes
2answers
45 views

One button on one side and others on other side of StackPanel

I am working on a WPF application. I have a StackPanel in my xaml file. In StackPanel there are three buttons. Problem is that all button are either on left side or on the right side. What I want is ...
0
votes
2answers
48 views

Setting DataContext of MenuItem declared as static resource in Window.Resources

I have this context menu, which I use at different DataTemplates of my TreeView. <Window.Resources> <ContextMenu x:Key="mnuContextTreeView"> <ContextMenu.ItemsSource> ...
1
vote
2answers
21 views

AppBar has left and right margin by default

I have a Windows Store app BottomAppBar with a grid. For some reason the AppBar has some left and right margin which I don't want. Is this a bug in metro app or there is some setting missing in below ...
1
vote
1answer
34 views

wpf xaml loop thru a gridview which is inside a listview and get the cell value

I have the following in my dgridtext.xaml file. XAML <Grid x:Name="grid1"> <StackPanel> <ListView Name="listview1" IsTextSearchEnabled="True" ...
0
votes
1answer
41 views

Extend Style in wpf

I tried the following way to extend style and add tooltip message if validationresult is true. But it shows error "Property style is set more than once". How can I extend style for this case. Any help ...
0
votes
2answers
64 views

How to draw dash line in grid row windows phone

Currently, I have a grid row with 3 columns: text (with padding indent), dash line and icon. I expect the result like this: The problem is I can't fix draw line width between text and icon and it ...
0
votes
0answers
25 views

Windows-8 Application with 3rd party library “ xaml”

My Windows-8 Application depend on " speech Recognition " How can use " speech recognition 3rd party library " with XAML APP ????

1 2 3 4 5 335