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

learn more… | top users | synonyms

0
votes
1answer
11 views

How to hide grid lines in VS2010 XAML preview?

Visual Studio 2010 shows some faint grid lines over the control rendering in the XAML Designer view. How do I make them go away?
0
votes
1answer
18 views

Rotating Pictures on WP8 Nokia Map

My class is making a WP8 app with many (Nokia) mapping components, I am programming a map with pictures defined on overlays on the map. I have, in my program (C# WP8), a map with the ability to change ...
0
votes
0answers
7 views

Creating a Wheel Spinner in XAML for Windows 8

I am trying to create a spinner wheel something like a roulette for choosing from a circle divided into various sections. If you want to get an idea http://www.sonyliv.com/mood-wheel something like ...
0
votes
1answer
16 views

Irregular Polygon

Take a look at the attached pic, I need to mimic the grey irregular polygon header at the top of the form. If it wasn't for the angled portion on the right-hand side, it would be straightforward. What ...
0
votes
1answer
7 views

Override ListView ItemsSource value for ViewModel property

Is it possible to override the ListViews ItemsSource and bind a Checkbox within the ListView straight to the parent ViewModel? Something like this... <ListView ItemsSource="{Binding ...
2
votes
2answers
30 views

Windows Phone 8 : Web Browser - Splash Screen

I'm trying to do little applications in windows phone 8 platform. I'm trying to use web browser and splash screen together. I made splash screen before application starts. But i want that splash ...
0
votes
2answers
336 views

TextBlock width binding to GridView

On my XAML page I have a text block with following binding: <TextBlock Width="{Binding ActualWidth, ElementName=SessionList, Mode=OneWay}" ... /> This binds to a grid view: <GridView ...
1
vote
1answer
154 views

What can cause my template to be ignored in this Custom Control

EDIT: Original title: When I add a custom control based on a timer, my templates are ignored. I'm working on the 70-511 training kit from Microsoft Press, and combined two practice exercises together ...
0
votes
1answer
16 views

Scroll passed by ListBox and handled by ScrollViewer

In Windows 8 app I have construction like this: <ScrollViewer HorizontalScrollMode="Disabled"> <Grid> <TextBlock/> <ListBox ...
0
votes
0answers
16 views

“Invalid cross-thread access” in XAML when adding Toolkit components to Maps

I have the following piece of XAML code in my Phone Application Page: <maps:Map x:Name="BigMap" Pitch="53" LandmarksEnabled="True" PedestrianFeaturesEnabled="True" ZoomLevel="12" ...
1
vote
1answer
96 views

How to implement a conditional validation rule in wpf/XAML

I was hoping to find a way to use a custom ValidationRule in XAML data binding, but to use it conditionally, such that the rules used are selected dynamically. For my particular problem, I want to ...
0
votes
2answers
29 views

Multibinding: two colums to one column

I have a table which has two columns ValueA and ValueB. I need to show the table in a grid, but I need to show either ValueA or ValueB, but not both. So if ValueA doesn't have a value, then ValueB is ...
0
votes
1answer
25 views

Webview dragging effect when scrolling

I got scrollviewer that is using horizontal scrolling, at the end i put a webview. When I scroll from left to right the Webview has an ugly dragging effect (it moves a bit more and then goes back to ...
0
votes
1answer
54 views

How can I style my application with no borders?

I've seen it here and there, recently on my Visual Studio updater: Is that a predefined style to get that nice and sleek ui? I want the window with no border but still the close and minimize ...
0
votes
0answers
12 views

Combo box inside Data Template interchanged and vanished When i am scrolling down

I am developing an windows 8 Metro App using xaml and c# in which I have bind a combo box inside Dev Express windows 8 grid control. All these are working very well but when am scrolling down the data ...
-2
votes
0answers
17 views

How to design first tab control or telerik tab control using xaml in Windows Phone XAML? [closed]

Hi; i am new in wp8 application. I wish to design tab control like below. How can i do that. i have been written ecf services to fill tab. i dislike prepared code. i am not a leech. i have no time to ...
2
votes
2answers
31 views

Bind the textbox value with values in other controls

I have a textbox whose text value I want to bind based on the values selected in two other controls. For example, I have a ListBox and I choose a value say "Blue" and one other TextBox whose text ...
0
votes
1answer
19 views

Element with event handler inside other element with another event handler?

I want to have a two event handlers Panel_Tap (StackPanel tap) and More_Tap (TextBlock tap). TextBlock is inside the StackPanel. My xaml code: <StackPanel Tap="Panel_Tap" ...
1
vote
1answer
33 views

Customize DatePicker by PerpetuumSoft

I use UI Controls for Windows 8 by Perpetuum Software. There is good DatePicker. But i need some customizations: How to change available range of date that use can select? Month names in Date ...
0
votes
2answers
22 views

Styling Inner Elements in XAML Style

i have this code <HyperlinkButton Style="{StaticResource HyperLink-Navi-Container}"> <HyperlinkButton.Content> <TextBlock Text="Sample Text"></TextBlock> ...
0
votes
1answer
34 views

Different item templates in ComboBox

In WinRT XAML I have a ComboBox which displays some complex item. Is it possible to declare and bind two different item templates for 1) the "normal" selected item (ComboBox is closed) and 2) the ...
0
votes
1answer
29 views

Case statments in XAML with DataTemplate

I want to implement a listbox that displays a different DataTemplate depending on a property in its bound data. I have a class called Notification that can hold different types of notifications all ...
1
vote
2answers
23 views

WPF Radio Button Fires Converter in strange order

I am writing a simple program using the MVVM Model on WPF. Basicly when the user clicks a radio button in a group of radio buttons, it will update a property in the View Model with the new Account ...
0
votes
1answer
30 views

How can I select items in a gridview while disabling IsHitTestVisible

I have a GridView with a small number of items in it. I want my users to be able to select the items by clicking on them. However if they click or drag on the GridView background, i.e. on a item, ...
0
votes
1answer
23 views

Change the Visibility and then change the Opacity of a Silverlight/WPF UIElement

I'm making a Windows Phone 8 app and would like to first fade out and then -- and only then -- actually turn a UIElement's Visibility to "Collapsed". However, I can't figure out how to make them ...
0
votes
1answer
26 views

Is it possible to create an Attached Property on a Sealed XAML control class?

The Run class in the Windows Store Apps libraries is SEALED, unlike the old desktop version. I need to add a property to it that I can retrieve when the user selects the Run. Is it possible to attach ...
-3
votes
1answer
35 views

How to inspect and extract XAML style from WPF application?

I want to extract XAML styles from WPF application specially resource dictionary like this: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
2answers
29 views

xaml / c# stackpanel with background rectangle

I have a list (ListBox) of items in XAML using a StackPanel- based element template. The layout is fine, but I would now like to have a rectangle as a background for each item - creating a box around ...
0
votes
1answer
43 views

How to read first 5 characters from string using StringFormat in Windows Phone XAML?

Basically in my Windows Phone application, i used to display the Name in the List through Binding. In this case, i want to restrict the name to display only the first 5 set of characters to avoid the ...
0
votes
0answers
21 views

Accessing the Windows registry from a XAML Start Screen application

I am trying to access the Windows Registry from a Windows 8 XAML Start Screen (Metric app) application from within the C# code behind and cannot see how to do it. The XAML application uses .Net Core ...
-1
votes
0answers
18 views

XAML Animations for notification [closed]

I have a Windows Phone 8 app with an app banner. When certain events are fired in my application, I'd like to display a animation notification in my banner. Something that would slide down and then ...
0
votes
0answers
49 views

Draw image to screen FAST! in C# WinForms [duplicate]

I'm trying to load up an image and render it to screen as fast as I can. Using a 3mb image, I can paint it to a pictureBox but it takes a second to render. If I throw it over to an embedded xaml ...
0
votes
1answer
29 views

Changing the page header text in XAML

How do I change the default page header in a Windows 8 XAML application? The question is simple, just I am still learning XAML. <Page.DataContext> <local:MainPageViewModel/> ...
1
vote
1answer
201 views

Window against of taskbar

I have a problem with my WPF window. I set the TopMost="True" to be forever on top. The problem is that when I click on another window (for example Firefox) my window remains on top, but in back of ...
0
votes
2answers
807 views

Change list view sort Property / Direction within XAML only

I have a simple ListView and want to sort the contents numerically or alphabetically, ascending or descending. The choice comes from a drop down box. I understand I can use CollectionViewSource to ...
0
votes
1answer
23 views

WPF Set Out of the Box Property to Inheritable

Is it possible to change the inheritance settings for a WPF property? Ideally, I would set ToolTipService.ShowDelay at the Window or UserControl level and everything in the visual tree would inherit ...
4
votes
1answer
50 views

Showing multiple headers in one column with DataGrid

I would like to have more than one property in a column like the following: Now, it's easy to create a cell template to show more than one property, but how would one go about creating a header ...
0
votes
2answers
545 views

Silverlight Find Control in Data Template

I have the following xaml code: <dxb:BarButtonItem Name="btnPrev" Cursor="Hand" ItemClick="btnPrev_ItemClick"> <dxb:BarButtonItem.ContentTemplate> <DataTemplate> <Image ...
4
votes
2answers
2k views

RelativeSource binding from a ToolTip or ContextMenu

What am I doing wrong here?: <GridViewColumn> <GridViewColumn.CellTemplate> <DataTemplate> <Button> <Button.ToolTip> ...
0
votes
0answers
24 views

Allow users to choose background music or background theme for windows 8 app

I built game app and I am trying to make it as 'user-interactive' as possible and I decided that something I would want to see happen in an app I had would be to allow the user to choose background ...
0
votes
0answers
34 views

How to animate listbox items that are databound

How can I control the Storyboard on the following ListBox DataTemplate so that after the data is bound each item appears one after the other, starting top to bottom: <ListBox x:Name="matches" ...
-2
votes
0answers
26 views

WPF ,XAML NameSpace Does not Read the Class in VS2010 C#

I am Working on Windows Phone App ,Visual Studio 2010 I want to do databinding and i am stuck at an error Error is "The Type local:AdderClass can not be found " in the line in XAML code i have ...
0
votes
1answer
15 views

Why does it throws a Arg_ InvalidCastException when I cast a color resources in WP7?

I work on a project target on Windows Phone 7.5 and above. I define a color resources in App.xaml and use it as a global resource. And When I use it in code-behind, it throws me a error. The Resource ...
1
vote
1answer
51 views

Leftmouseclick on stackpanel

I have a stackpanel with image and button in it. I want to fire event when user clicks on a button in stackPanel. My code in xaml is <StackPanel x:Uid="TemperatureMonitor" ...
0
votes
0answers
23 views

Why does my custom template CalendarDayButton not listen to PropertyChanged?

I've created a custom control based on Calendar that also implements. It's functionality is that it can color code days based on if that day is present in a Observable Collection. I've created a ...
0
votes
1answer
19 views

how to display text on an image in xaml (windows phone)

I have taken two controls image and textBlock, placed the textBlock on an image, but its text is not visible (the image comes up). Please help me on his guiding how this can be implemented. Thanks
2
votes
1answer
1k views

Rotating an Image in Windows Phone

Hi guys I display a photo I took on one of my pages. I capture the photo in Portrait mode and it works ok. When I show the picture on my next view it treats the photo like it was taken in Landscape. ...
0
votes
0answers
25 views

Min Height for a Row which can be collapsed in some scenario

I have a grid with multiple rows. out of which some of the rows can be collapsed in some particular scenario. Is there a way to define min height for these collapsible rows so that there height ...
2
votes
4answers
289 views

Windows 8 XAML-only solution for toggling the visibility of a control when hovering the mouse over a different control

I am working on a project and need help in finding a Windows 8 XAML-only solution for toggling the visibility of a control when hovering the mouse over a different control. The control can be a button ...
0
votes
1answer
31 views

Binding with the inner DataGrid in wpf

I am having problem to bind with an inner DataGrid. The binding works with the DataGrid "Account" but not with "Record". I am using DataGrid.RowDetailsTemplate for the second Datagrid <Grid> ...

1 2 3 4 5 326