Extensible Application Markup Language (XAML) is an XML language used for defining user interfaces in WPF and Silverlight
1
vote
3answers
241 views
How to clone UIElement in WinRT XAML C#?
I have tried this approach first but getting error "Element is already the child of another element"
var objClone = new MyImageControl();
objClone = this;
...
1
vote
1answer
40 views
Windows Phone 8 bind to string resource with format
My localized resource string, named TextResource has the value: Text: {0}. Where {0} is the placeholder for String.Format.
My user control has a DependecyProperty called Count.
I would like to bind ...
0
votes
0answers
29 views
How to retrieve user input from Popup with MVVM in windows8
I have a GridView which contains Product items, in the itemtemplate, there's an edit button, when user click the button, popup a popup window, all of the information about this product filled in the ...
0
votes
0answers
39 views
Add custom hover and pressed state for button in windows 8 app
I created a Windows 8 app but I am trying to make it as user interactive and cool as possible. So one way I wanted to do this was add a custom hover and pressed state for a button. And yes I have ...
0
votes
2answers
28 views
Object of type 'System.Windows.Data.Binding' cannot be converted to type 'System.String'
Why am I getting the exception when I am trying to bind a String Property itself.
I XAML if I write:
<telerik:RadGridView.GroupDescriptors>
<telerikData:GroupDescriptor ...
0
votes
1answer
50 views
how to create data fields in xml for windows8 (c#-xaml) metro app ? how to access and parse that data ? and how to import that xml data in xaml UI?
I'am programming a Windows 8 Store App (Metro Design) with C# and XAML using Visual Studio 2012. There is no need for a database server with multi user support etc.my application is like reminder and ...
0
votes
1answer
28 views
Horizontal GridSplitter does not resize content
I've got a GridSplitter defined in the following way:
<Grid x:Name="grdMailContent"
Grid.Row="4"
Grid.Column="0">
<Grid>
...
7
votes
2answers
176 views
Add a border around all children of a TreeViewItem
I have a TreeView and I am trying to implement a style that will allow me to place a border around all the children of a particular node using the HierarchicalDataTemplate. An example of what I want ...
0
votes
1answer
47 views
Auto scroll banner images in a windows phone 8 app
I'm trying to implement autoscrolling and snapping to images in a windows phone 8 app
I currently have couple of images in a stackpanel inside a scrollviewer, and I'd like them to auto scroll ...
1
vote
0answers
83 views
windows store app bind a popup menu to a list
I am making a small battle game as a Windows Store app and I am using C# and XAML.
The main player has an inventory list that fills with strings dropped by the enemy. The items in the inventory can ...
0
votes
0answers
22 views
WPF Problems with Custom Control
I have a Custom Control in WPF
public class MyClass: Control, INotifyPropertyChanged
{
private Boolean _hasData;
public Boolean HasData
{
get { return _hasData};
set
...
0
votes
1answer
18 views
DataBinding and EventToCommand
I'm attempting to use EventToCommand to initialize my ViewModel, but the command isn't firing. I suspect it's because the Triggers section is not within the databound container, but how can I do that ...
7
votes
3answers
7k views
Windows 8 bottom app bar
I've been trying to get an App bar implemented in a WinRT metro app (C# / XAML), but don't know where to begin. I've tried using the Tag and I get a Type not found error.
There's no help online, ...
0
votes
1answer
17 views
Substitute for CreateDirectory or Path.Combine in Windows 8 apps
CreateDirectory and Path.Combine doesn't seem to work on Windows 8 applications. How could I substitute it?
My first intention was to create a folder inside %APPDATA%, but
...
-1
votes
4answers
412 views
TypeScript XAML framework
As a .NET/XAML developer I am wondering if anybody has started to write a framework which will replace Silverlight and Flex using technologies like TypeScript and XAML to produce HTML5, JavaScript and ...
1
vote
1answer
20 views
XSL XAML unique names
I try to make a XAML file using XSL, and one of the things I need is a unique name for 100 textblocks. I create the Textblocks in a for-each loop (which works, all the elements are created) and then ...
6
votes
1answer
104 views
+50
Border Margin in Window template doesn't have any effect when used with WindowChrome
I was checking out the WindowChrome class in System.Windows.Shell library (v 3.5.41019.1). When I try to create a Window template, the margin of the Border element in the template seems to have no ...
1
vote
1answer
29 views
Advanced templating of DataGrid specific to the data in hand
Let's say I have an object that is like:
Id = 123456789
Date = 01.01.2013
CurrentItems = 20
TotalItems = 200
A = 25
I would like to create a DataGrid that is styled similar to the following image:
...
6
votes
2answers
3k views
Windows 8 Modern UI Styles for WPF
I want my WPF app to look like WinRT apps:
Are there any ready-made styles or controls available for WPF that lets us achieve this?
1
vote
1answer
49 views
How to disable right-button selection on List View Item (ListViewItem)?
I want to prevent the ability to deselect a list view item if it is already selected. Therefore how do I prevent right mouse click ability to deselect an item?
I have prevented the ability to ...
1
vote
1answer
19 views
Set TabIndex to TextBlock
I'm developing Windows Store application, using C# + XAML.
I have a textblock, used as activation button for HeaderMenu with a chevron character inside it and Tap event binded. How can I activate it ...
0
votes
1answer
41 views
ComboBox in Telerik.UI.Xaml.Controls.Grid.RadDataGrid
Windows 8
Visual Studio 2012 Express
Simple XAML:
<telerik:RadDataGrid ItemsSource="{Binding ProductsSource}" AutoGenerateColumns="False">
<telerik:RadDataGrid.Columns>
...
0
votes
1answer
155 views
silverlight slider flow direction for vertical orientation
Is there a way to change the flow direction of the slider for the vertical orientation? If not, is there a way to change the background color to a color without it having that weird shaded effect? I ...
2
votes
1answer
137 views
Crash when “Create Data Binding” in Blend for Visual Studio 2012
Blend for Visual Studio 2012 always freeze when I click on "Create Data Binding".
I am using Windows 8 Professional 64 bit on MacBook Pro.
Have anyone experience the same error I am having?
1
vote
2answers
40 views
Adding Converter declaration
I try to insert an image to my GUI application by means of a binding and a converter.
I create an instance of a value converter in the resources of my Main Window:
"xmlns:my1="clr-namespace:MyApp"
...
0
votes
2answers
57 views
OnPropertyChanged method is not firing
In WP8 app, i have few controls where i bind the foreground color which i am changing in the codebehind. But OnPropertyChanged is not firing when the user event happened.
I have defined this binding ...
0
votes
2answers
146 views
image in user control doesn't display in the page
My solution contains two projects, one is class library and the other is windows store app blank page project. There's a user control in my class library project, and in the user control, there's an ...
0
votes
1answer
41 views
How to correctly plan a Windows Phone app
I'm trying to make my first WP app and I'm running into some design problems as I'm coming from Java and I'm not used to XAML and stuff like that.
Let's say that I have a structure like this:
...
4
votes
4answers
1k views
How to make image not stretch?
[imgur deleted image]
The icon on the left is the result of this code:
<Button Height="23" HorizontalAlignment="Left" Margin="12,276,0,0" Name="button1" VerticalAlignment="Top" Width="75">
...
0
votes
1answer
48 views
LongListSelector get selected index
Is there a way to get the index of a particular element from a LongListSelector control? I'd like to remove the object the user has selected but there doesn't seem to be a straightforward way of doing ...
2
votes
2answers
35 views
How to bind to a StaticResource with a Converter?
I want to use a Converter to change the value of a StaticResource before assigning it to a property. Is there a way to simulate a Binding that will just set the value of the StaticResource after ...
3
votes
3answers
3k views
ComboBox SelectedValue doesn't show
I have a strange problem in my WinRT/C# XAML Metro app, using the Windows 8 Release Preview (latest patches installed). I'm using a ComboBox, whose values ItemsSource and SelectedValue are bound to ...
0
votes
3answers
69 views
Static method call in xaml
How can I use static method (with parameter) in xaml in metro style app? In wpf I could use ObjectDataProvider but there is no such a thing in WinRT.
I need use it sth like this:
<button ...
0
votes
1answer
72 views
Windows 8 Metro XAML. How to change background of grid on hover and/or click
I would like to change the background of my grid to white when you hover over or select it. I'd also like to change the color of the text inside at the same time to black. This is specific to one page ...
0
votes
1answer
31 views
XAML make animation smooth
I'm animating a GridColumn width property (GridLength) with an ObjectAnimationUsingKeyFrames. My question is, is it possible to make the animation run smooth.
<Storyboard
...
0
votes
2answers
25 views
Binding in DataTemplate/ItemTemplate
I have a ComboBox whose ItemSource is a ListCollectionView of MyClass. The ComboBox uses the following ItemTemplate:
<Style x:Key="StyleComboBoxGroups" BasedOn="{StaticResource BaseComboBox}" ...
0
votes
0answers
18 views
ListBoxItem HorizontalContentAlignment
I have a problem with my ListBoxItem's on a Windows Phone 8 app, while trying to get them to stretch across all the width of the ListBox.
My ListBox:
<ListBox
...
0
votes
1answer
38 views
changing color at run time but hits with exception
I have defined a custom SolidColorBrush in my app.xaml
<Application.Resources>
<SolidColorBrush x:Key="App_DarkForeground" Color="White"/>
</Application.Resources>
in ...
0
votes
0answers
26 views
C# XAML Trouble accessing certain index of a table
So I've got a program that links to a windows azure mobile service database and what I'm trying to do is have a combobox with the zipcodes showing. The zipcodes are in the 5th position on each column, ...
0
votes
1answer
68 views
Navigate properly between tab in a WPF MVVM application
I'm doing a WPF application with the M-V-VM patern (i'm using galasoft if it's relevant), but I have issues when I navigate through a tabcontrol.
I'm adding tabs on the run. All the binding seems to ...
0
votes
1answer
32 views
Getting Parent Element Width for Converter
I'm trying to get the entire width for a current cell so I can draw a rectangle with a width of a certain percentage of that cell. I wasn't able to bind to set the Width property more than once, as ...
0
votes
0answers
22 views
Xaml image control stopping working after a while
I'm creating an image viewer software in C#, and I'm using an embedded Xaml image control to display the images because it's MUCH faster than rendering the images to winForm pictureBoxes.
The images ...
1
vote
0answers
53 views
Possible Mvvm-light bug with EventToCommand
Everything starts pretty simple: i have a ListBoxSelector (app is for wp7). Items consists of picture and some text. Items style is stored inside of the StyleTemplate. Image can be tapped, its event ...
0
votes
4answers
40 views
Give TextBlock Default Value if result returns null
Hello I am trying to give a default value to a textblock if the results returned are null
Here is what I am trying!
All that returns is the String Format I set!
<TextBlock ...
0
votes
1answer
18 views
Windows Phone Context Menu Item Text Not Appearing
I have a Windows Phone 8 app using XAML/C#. My app has an ItemsControl that relies on a data template. My DataTemplate looks like the following:
<DataTemplate x:Key="myTemplate">
<Grid ...
0
votes
0answers
16 views
Trigger Gridview to relayout the items
I have
<GroupStyle.Panel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid ItemHeight="5" ItemWidth="5" Orientation="Vertical" ...
0
votes
1answer
46 views
Missing a Using Directive or an Assembly Reference WPF & XAML [closed]
I am having a problem where, INotifyPropertyChanged, PropertyChanagedEventHandler, and PropertyEventChangedArgs, can not be found:
"The type or namespace name 'PropertyChangedEventArgs' could not ...
0
votes
2answers
296 views
DataGrid Tabbing goes from cell to content
I have a datagrid consisting primarily of TemplateColumns. I am having the issue where when tabbing through the row, it appears to go to the cell, then the content within the cell (ie a textbox or ...
2
votes
1answer
243 views
Windows Phone make Segoe UI symbol not appear as emoticon
I want to use the airplane Segoe UI Symbol in my C#/XAML Windows Phone 8 application.
I am inserting the symbol into my page like this:
<TextBlock>✈</TextBlock>
The symbol ...
0
votes
1answer
32 views
How to Validate TextEdit to accept Website address,Phone,Email formats only in WPF from .cs file?
I have a TextEdit on form. which contains website address Text Field, Phone(US), email. I want to validate all these from .cs file. Please any one can help me?
WPF Markup:
<dxe:TextEdit ...












