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
0answers
8 views

Using ItemsControl to bind buttons top/left position on canvas Windows Phone

I am using ItemsControl and have several buttons and place them at a specific location on the canvas. However, the Canvas.Left and Canvas.Top always place all buttons at 0,0. ...
0
votes
0answers
11 views

WPF : Animating Width of an Control alternately with start value

I have an image whose width should be animated from 0 to 30 pixels when a boolean property changes to true an back from 30 to 0 pixels if the property switches back to false. In general, this works ...
0
votes
0answers
4 views

DataGridTextColumn foreground color

I am trying to change the Foreground color of my grid header. I tried this but it changes only the elements in the column but not the header. <DataGrid Name="Datagrid" ...
1
vote
0answers
15 views

Data Binding works in code-behind, but not in XAML Possibly ItemsControl Issue

I have several bindings in my code, but I'm not sure why only this one fails in xaml. <ItemsControl.ItemTemplate> <DataTemplate> <wpfExp:SignalGraph ...
0
votes
1answer
7 views

Windows Store Frame Navigation: How to get the source page?

On windows store apps we usually use something like this: this.Frame.Navigate( typeof(ItemDetailPage), itemId); To navigate between the app's different pages. After the page I want to navigate to ...
0
votes
0answers
18 views

How to do different actions based on different image's locations (A digital book with traditional look)

I'm new to stackoverflow, and hope my question be in the right place ? I'm going to make an application for a book which look the same as in paper. So I have images of all the pages of the book. The ...
0
votes
0answers
28 views

C# variable in XAML code

I have a partial class code behind for a XAML form. Here is the code behind: partial class GalleryDictionary { private void GalleryItemLabelPropertyChanged(object sender, RoutedEventArgs e) ...
0
votes
2answers
35 views

Why does Task wait for Task.Run before executing next code but not for Task.Factory.StartNew?

At least as I've implemented it in my code, I had to modify the StartNew Task to get the same behavior. In my View there's a start button. It's IsEnabled property is bound to a Boolean in the View ...
1
vote
1answer
31 views

Binding the value of a Setter Property in WPF

I have spent all day looking for a way to display a default string of text on a ComboBox and the closest I managed to find that worked was an example that uses watermarking. When my application opens, ...
2
votes
1answer
51 views

Is data binding faster than modifying the properties of subcontrols manually?

So i have several subcontrols that need to take the value of the parent controls dependency property. Is binding the value to the dependency property of the parent going to be faster than just ...
0
votes
1answer
28 views

Accessing ItemsPresenter items in a ListBox

I need to iterate through the VirtualizingStackPanel of a ListBox control to get at the ListBoxItem.RenderSize values. In C# of VB.NET code, how might that be done? Background: I'm working with a ...
0
votes
1answer
18 views

Can XAML based UI's built in Blend 2012 be used on Win 7?

If you'd like more info on why we need this, please see the body of this question (I've been told it was too general so I'm asking more specific questions): How should I build a proprietary, and ...
-1
votes
1answer
41 views

In terms of C# apps, which is easier (or possible) to port from Windows to OSX - XAML or WPF? [closed]

please see this question for more info on why I'm asking: How should I build a proprietary, and complex, UI that can be ported (as is) between Windows, OSX, iOS etc.?
0
votes
1answer
24 views

How to display the first item of a combobox as a title of a combobox

What I wanted to do is make the first item of my combobox as a title. I tried to google and found out that I can use IsSynchronizedWithCurrentItem="True" but the problem is I have different controls ...
0
votes
0answers
20 views

Problems with styling UserControl

I have created an UserControl that actauly just a closeable tabItem (In code its inherit TabItem) And just cannot figure out how to style it in right way <UserControl x:Class="CloseableHeader" ...
0
votes
1answer
24 views

The type 'x' already contains a definition for 'y'

I am receiving the following error in my code for 2 buttons that I changed the name of in the properties tab. Error 1 The type 'x100.MainWindow' already contains a definition for 'startBtn Error ...
0
votes
2answers
21 views

DataTable to excel conversion

I have a datagrid which populates a datatable, I want to export the DataTable to excel on click of a button. Can any one suggest me some pointers? I am new to this. Thanks, Sagar
1
vote
1answer
56 views

Problems with wpf windows location

I have an application that runs in a second screen, when the user runs the application in the first screen the application detect the second monitor and change their position to the secondary screen. ...
0
votes
0answers
13 views

WP8 Loaded event not always called

I have a LongListSelector using binding, dataTemplate, etc. In the dataTemplate there is one element where I set a Loaded event to be fired so I can then populate programatically the content of this ...
0
votes
1answer
14 views

How do I change the FontSize and style of the data header in my xaml Datagrid

I have a datagrid which auto generates the columns. <DataGrid Name="QueryGrid" AutoGenerateColumns="True" Height="1000" Width="1135" ItemsSource="{Binding QueryTable}" Visibility="{Binding ...
1
vote
0answers
18 views

Binded content on ContentControl is null in DataTemplateSelector

I have to insert SVG logos as category names on my homepage, each category has its logo. They are defined in the app.xaml as DataTemplates and I am including them on my homepage in a ContentControl ...
0
votes
0answers
23 views

Rotate a document by 90 degrees before printing

I have created a sample code to print a document using C# XAML in a Windows 8 App. Now when I print I want the document to be printed 90 degrees rotated. How can I achieve this? Following is my ...
0
votes
1answer
30 views

Trouble with Grid and StackPanel - Bindings

OK, I'm having issues properly using a ScrollViewer (containing an ItemsControl) inside a StackPanel. The thing is the scrolling works, however : No matter how much the user scrolls down, the ...
0
votes
0answers
18 views

Issues displaying 2 seperate Canvases at the same time in XAML

I have canvas A and canvas B. Canvas A contains an Image and a grid with diffrent colour squares. Canvas B is a diffrent image. Once i click on a square a event triggers that should set the visibilty ...
0
votes
1answer
32 views

Changing text color for selected ListViewItem in metro UI applicaiton

please help me to get things together. I'm working on Windows 8 metro application that contains ListView. My listview contains TextBlocks. Something like this: MyPage.xaml: <DataTemplate ...
0
votes
0answers
17 views

save sortedlist in existing XAML file

SortedList slist=new SortedList(); foreach (var dictionaryEntry in items) { slist.Add(dictionaryEntry.Key.ToString(), dictionaryEntry.Value.ToString()); } ...
1
vote
1answer
30 views

Remove the mouse over effect on a ListView in WPF

I'm using WPF to write a windows 8 tablet application and have a ListView control on the screen. The list view has numerous rows that cover more than 1 page, so vertical scrolling is enabled. When I ...
0
votes
2answers
27 views

Foreground image in Panorama App

I am working on Panorama App for Windows Phone 8 and I have to add Foreground image with the background image.I have successfully added the background image but i don't know how to add foreground ...
0
votes
2answers
66 views

Newbie issue with DataContext and Bindings

I'm definitely not new to C# and .NET, but since I haven't played with XAML for a quite a long time, I'm facing a pretty simple issue... I've created a test Model (ResultsModel) like this : using ...
0
votes
1answer
18 views

Using ListBoxItemExtensions.IsSelected from WinRt Xaml Toolkit doesn't work TwoWay Binding

In Windows RT App (c#) with WinRt Xaml Toolkit i use this: <ListBox ItemsSource="{Binding Path=FilterBaseFields}" SelectionMode="Multiple"> <ListBox.ItemTemplate > ...
0
votes
1answer
41 views

Wpf combobox with checkboxes in it

I am trying to implement a combobox with checkboxes in it. All the articles/resources I found on Google/SO suggest adding a bool to my business object. But I am looking to create a reusable control. ...
0
votes
2answers
37 views

How to create a always visible Item in an ComboBox (DropDown)

let's suggest we have a list of Names like this var list =new List<string>{"Abraham", "Alex", "Anna", ...
0
votes
1answer
11 views

Namespace error in xaml for DataTemplateSelector

I've an xaml code in which I've used DataTemplateSelector.But it shows me namespace error.Code behind for it is written inside "TimeSheet.Views.DataTemplate" namespace and xaml code is written in ...
0
votes
1answer
30 views

Bind IsSelected Property of ListBoxItem in ListBox with Multiple selection mode

In WinRT App (C#) I have List<Item> items, which bind to ListBox. Class Item has 2 fields: string Name and bool IsSelected. As you already understood, I want to bind IsSelected field to ...
0
votes
0answers
31 views

WPF Static 'cue' Image in ComboBox

How in WPF can you set a static icon to appear in a ComboBox, that is there no matter what you type or select? Here is an example from the Team Explorer view in Visual Studio 2012 of an image that ...
0
votes
2answers
26 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" ...
1
vote
1answer
25 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
26 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
32 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
26 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
vote
1answer
29 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
45 views

How to use DI with WinRT

In a WinRT Page how can I 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 ...
0
votes
1answer
32 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
26 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
26 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
29 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
39 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
12 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
18 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 ...

1 2 3 4 5 335