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

learn more… | top users | synonyms

2
votes
3answers
86 views

Why are XAML namespaces URIs and what are they for?

It might a basic question, but I am very sure that many of the people still will be skeptical like me on the concept of XML namespaces. I read some documents, however it is nowhere clear why we need ...
1
vote
2answers
138 views

Get the SurfaceListBoxItem and ScatterViewItem when object is dropped on a SurfaceListBox and ScatterView

I'm dropping an object (ScatterViewItem) on a SurfaceListBox with the s:SurfaceDragDrop event, and it works fine when detecting the dropping on the whole SurfaceListBox, however, I want to know in ...
0
votes
1answer
36 views

Binding ObservableCollection of Custom Objects to ComboBox

I'm having some trouble binding an ObservableCollection to a ComboBox (RadComboBox). I used almost the same code before, but now, for some reason, it's not working (nothing shows up in the ComboBox). ...
0
votes
0answers
27 views

Animation like default Transition animation.

WinRT control's default Transition are simply superb and i would like to make transitions like the same form my WPF controls. How could i step forward. Any guidelines?
0
votes
0answers
21 views

ExpanderView Header with bigger Height

I have made an ExpanderView.HeaderTemplate with a height of 100. Now the little line doesn't start after the 100. It starts earlier so the line is overlapping the header. Is there a solution to make ...
0
votes
1answer
477 views

How to Hide Keyboard in WinRT by Code

In my winRT C# app i have a textbox, when the text box is disabled the visual keyboard must hide. but it is not working as expected. <Page x:Class="App2.MainPage" ...
0
votes
1answer
3k views

Create ToolTip on Silverlight DataGridTextColumn that is different from the bound cell contents

I have a DataGridTextColumn in a Silverlight 4 DataGrid and I want to set a ToolTip value on the column that is different from the bound value. I know I can do this with a templated column quite ...
0
votes
1answer
37 views

WPF: Remove highlight effect from ListViewItem

I'm developing a WPF application that has a log. The log is designed with a listView. The listviewitems most not changes appearance when the mouse is over or item is selected. That i have solved with ...
0
votes
1answer
23 views

WPF - How to skip a label in tab navigation?

I have a stackpanel inside a controltemplate inside a itemscontrol inside a stackpanel inside a grid inside a usercontrol (se the xaml below). In the inner stackpanel there is a label ...
2
votes
1answer
31 views

Strategy for sharing markup between XAML pages

I am creating a Windows Phone 8 application where I need to share pivot items between multiple pages, e.g. page1: sectionA, sectionB, sectionC page2: sectionA, sectionB page3: sectionC […] Are ...
-1
votes
0answers
34 views

Get looping Selector value

I have a loopingSelector in my xaml page, I have already populated it, and to get the value of the looping selector's selectedItem, I've written this code here: int h = 0; h = ...
2
votes
4answers
238 views

passing data between pages correctly

I have been trying to seperate a single WP7 app page into two seperate pages so that I can keep the functionality in one page and the view in the other. Basically I am creating a tabbed webbrowser ...
0
votes
0answers
10 views

Xaml ListView columns not displaying right

I am using Azure mobile services to get data from a table and display it onto my app. I am using the code below but the data is being shown all in one row - the columns are not being separated. I have ...
2
votes
2answers
71 views

XAML Binding to parent of data object

I have a grid column defined. The parent grid gets its items from an ObservableCollection of type ItemClass. ItemClass has two properties: String Foo, and bool IsEditAllowed. This column is bound to ...
1
vote
1answer
69 views

Changing border color when a control is selected with c# on windows 8 app store

I have a gridview control with images and text with this xaml: <Grid Grid.Column="1" Margin="0,40,30,0" > <GridView x:Name="celebGridView" Margin="0,0,0,0" Padding="0,0,0,0"> ...
1
vote
2answers
701 views

How to set two alignment in wrappanel

How can I get a wrappanel like the pics below? The two button < > and textblock align to left, and the textbox align to right, when I resize width of windows, the textbox auto wrap to new line. ...
0
votes
0answers
31 views

XAML GridView to GridView Drag and Drop Mouse vs Touch

Here's XAML code where you can drag and drop GridView elements between different GridViews, however, this approach only works with mouse input and just partially with touch input. With touch input ...
-1
votes
2answers
75 views

C# Windows Forms and XAML

I would like to know if it is possible to combine XAML with Window Form or reverse. Also I would like to know a good place to learn how to work with both of them. For example I want to make a XAML ...
0
votes
1answer
21 views

VirtualizingStackPanel not aligning menu items vertical on applying theme

Before applying WPF theme - BureauBlue.xaml theme, I can see menu items aligning vertically with the below code: <Menu.ItemsPanel> <ItemsPanelTemplate> ...
2
votes
2answers
640 views

How to change windows phone APP language during runtime?

I followed this example to build a multilingual app: How to: Build a Localized Application for Windows Phone. I successfully bound the resource data to text like this: <TextBlock ...
0
votes
1answer
70 views

Defining CustomMessageBox from Windows Phone Toolkit in XAML

Can I define CustomMessageBox in XAML? I have the code: <phone:phone:PhoneApplicationPage.Resources> <toolkit:CustomMessageBox x:Key="CustomMessageBox" Title="Blabla" ...
0
votes
2answers
141 views

LongListSelector with horizontal Scrolling - WP8

Is there any way to make LongListSelector scroll horizontally? By Default its scrolling vertically. There is no ItemPanel property or ScrollViwer available to change the orientation. Any help will ...
0
votes
1answer
715 views

How can I put items in an XAML combobox/listbox using Ironpython code?

I have a listbox and a combobox described the XAML code below and I am trying to populate this listbox and combobox from within IronPython code and not XAML. How can I populate this lists from within ...
0
votes
2answers
48 views

Metro style: how to show filtering options for longlistbox in a proper way

I have a large collection of items with several parameters, so i'd like to give a user a possibility to have different filters: like order by time, by alphabet, or by categories. How should i ...
-1
votes
2answers
66 views

LongListSelector in WP8

I am trying to create my first WP8 application. I have good experience on Silverlight & WPF however this is not a cake for me which I expected :(. I am making a Create Employ Form in which user ...
0
votes
1answer
25 views

Handling Popup with Togglebutton

I have a Toggle button and a popup in Xaml. popup's IsOpen bound to toggle button's IsChecked and the Popup's StaysOpen is set to false. So the popup will get open when the toggle button checked and ...
1
vote
3answers
653 views

Changing Visiblity on a DataGridTemplateColumn works only the first time

I was looking at an answer on how to set the visibility of a data grid column, so i added <UserControl.Resources> <BooleanToVisibilityConverter x:Key="b2v" /> ...
0
votes
1answer
26 views

WPF: Add null value as a static resource

Is it possible to add null as a static resource of a markup element? I want to be able to refer to a value using {StaticResource myKey} syntax. At the moment the value I need to refer to is null, but ...
0
votes
1answer
26 views

scrollviewer the property 'content' is set more than once

Here My Code <Grid Style="{StaticResource LayoutRootStyle}"> <Grid.RowDefinitions> <RowDefinition Height="140"/> <RowDefinition Height="*"/> ...
1
vote
1answer
95 views

Change Windows 8 App Background in real time (C#/XAML)

I'm doing a Windows 8 application (METRO UI / XAML / C#) and I have a Toggle Switch in the settings bar. I want this switch to select between a "light" and a "dark" theme, in real time. I already made ...
0
votes
0answers
23 views

Binding triggers to RadioButtons in DataTemplate on separate DockPanel object

I have 2 DockPanels on a Xaml page (Dock1 and Dock2). Each DockPanel creates a list of RadioButtons using a DataTemplate in a Listbox. Based on which RB is selected I display a specific image from ...
0
votes
1answer
62 views

Reading QR codes / bar codes in windows 8 application

I want to Read QR codes / bar codes in windows 8 application using xaml C#, any pointers? I tried this using ZXing.Net var openPicker = new FileOpenPicker { ViewMode = PickerViewMode.Thumbnail, ...
0
votes
1answer
26 views

ComboBox.SourceUpdated event is not fired

I have two ComboBoxes on my view. Both of them are bound to two different ObservableCollections in the ViewModel, and when the selected item in ComboBox1 is changed, ComboBox2 gets updated with a ...
0
votes
0answers
187 views

Message.System.InvalidOperationException: Reference is not a valid visual DependencyObject

When I run my Silverlight application in browser, on loading a certain view, the Visual Studio Just-in-Time Debugger gives me this error. Message.System.InvalidOperationException: Reference is not a ...
0
votes
0answers
24 views

DependencyProperty callback only executes from code and not XAML

I have the following DependencyProperty: public static readonly DependencyProperty ColumnsProperty = DependencyProperty.Register("Columns", typeof(ObservableCollection<GridColumn>), ...
0
votes
2answers
42 views

Bug in WPF user control

I created a user control with a menu in WPF. It was working just fine and now I'm seeing a format issue with the MenuItem.Header. Basically if I add a header where the name has a "_" character it ...
0
votes
1answer
37 views

Bind property to method

I am developing a Windows 8 App in C# and using databinding <CollectionViewSource x:Name="departments" Source="{Binding Departments}" d:Source="{Binding AllGroups, ...
0
votes
1answer
78 views

How to convert byte array to InMemoryRandomAccessStream or IRandomAccessStream in windows 8

now I've had a problem that is how to convert byte array to InMemoryRandomAccessStream or IRandomAccessStream in windows 8 ? This is my code, but It did't work, refer the following code internal ...
2
votes
2answers
2k views

Listing all Validation.Errors in a single WPF control?

I'm trying to find a simple way of binding a single control (eg. TextBlock or ListBox) to list all the validation errors on a WPF form. Most source code examples I have been able to find just bind a ...
0
votes
0answers
27 views

Change AppResources in design time

I am trying to change the display language in design time in windows phone. Basically, I have two AppResources files each populated with localized strings. In my text boxes I have bound it like this: ...
0
votes
0answers
26 views

textblock not wrapping when set in code behind in background agent

I'm making a custom image in a background agent on Windows Phone 8 to display on the back of my live tile. I've hit a small problem, I cannot get my text wrapping to work. I first create a canvas, ...
0
votes
1answer
33 views

WPF MVVM - Activate ViewModel-command by use of hot keys from MainWindow

I have an MVVM application in which the MainWindow contains a grid with several views. In one of the viewmodels there is a command which I can activate by using hot keys in its corresponding view. I ...
0
votes
0answers
39 views

Bitmap Image URI, Setting an image uri with an assembly path but returns exception

I'm binding the URI to a string: <Image> <Image.Source> <BitmapImage UriSource="{Binding ItemValue}" /> </Image.Source> </Image> And in return this ...
0
votes
0answers
17 views

C# documentation XamlGeneratedNamespace (Sandcastle)

I have created a documentation to my project which contains a several .xaml files and tens of .cs files. My problem is that after I have generated the documentation (using Sandcastle) there is also ...
-1
votes
0answers
12 views

Understanding DataTriggers

For my own future reference (and to save anybody else a headache), I am posting this problem and solution, with a request to have it explained by someone with more insight into what's going on. The ...
0
votes
1answer
39 views

Building a Comic strip RSS reader - feeds won't show

I went through this guy's tutorial to build an RSS reader in the hopes of converting it to a comic strip reader, but when I try to do so, the app never works the way I want it to. The app in it's ...
0
votes
0answers
41 views

Change visibility of GridView Items using binding

How can I change GridViewItems visibility using property binding? I can't create another ObservableCollection to filter the one I am using as ItemsSource. I tried to use GridView.ItemContainerStyle ...
1
vote
1answer
32 views

Is there any XAML Grid element equivalent in HTML/CSS?

I have a deep experience about WPF, XAML, etc. However, I'd need to create something in HTML/CSS/JS. In WPF, but also in Silverlight, there is a very versatile element which is the "Grid". It's ...
0
votes
0answers
30 views

Text is invisible in ContextMenu

Subj. While clicking on ContextMenuItem, event shows that everything is fine, but foreground and background are always totally white. <toolkit:ContextMenuService.ContextMenu > ...
4
votes
3answers
370 views

the name <…> does not exist in the current in the namespace clr-namespace <…>

I have a small WPF application which used to compile just fine but is not anymore. I can't really say at which point it stopped building. It just worked fine one day, and the next it's not. Here's ...

1 3 4 5 6 7 324