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

Photocapture device Camera Hangs in Windows Phone 8

I am developing an application in Windows Phone 8. Basically in my application, i use PhotoCaptureDevice API for taking snaps and scanning Barcodes. When I go forth and come back to camera page ...
-2
votes
0answers
19 views

Project suddenly breaks with tons of xaml errors “The name X does not exists in the namespace Y” [closed]

Subj. Guys, what are you doing in this case in the first turn? Edit: in my case, fixing non-xaml error helped.
0
votes
0answers
15 views

Is there a “Tool” to convert WCF XAML based Activities to CodeActivity

I have bunch(100's?) of XAML (Designer) Acitvities That would like to be AutoMagically converted to CodeActivities. Reasons?, Too many.. (it makes me angry?) I've .., of course been moving them one ...
1
vote
0answers
51 views

ResourceDictionary and Serious Performance Issue

I have two simple ResourceDictionary in my application. Converters.xaml <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:l="clr-namespace:MyApp" ...
0
votes
1answer
30 views

Binding TextBlock To Observable Collection

I am trying to bind a textblock to a item in a observable collection. Below is the class and the property for the collection. Am I binding correctly? Thanks! public class ListStuff { public ...
0
votes
0answers
26 views

Caching of displayed images in Silverlight/Windows Phone app

My app shows a list (LongListSelector to be precise) with text and Images. For the images, I currently bind the Source attribute to an HTTP URL provided by the model class, which works without ...
4
votes
3answers
87 views

How to Bind to window's close button the X-button

How I can bind one of my buttons on control to X Button that closes the window ? I just want to create cancel button that just closes the window. I am using MVVM in my code. If possible to do it only ...
0
votes
1answer
31 views

RadioButton and image

I try to set up images instead of bullet for my RadioButtons. I've 10 RadioButtons but I can't setup my FishImg for all. Only the rb I clicked just before displays the imgFish. My Style ...
1
vote
2answers
45 views

Setting Binding.Path throws exception on some machines

Consider following example public class Test { private static string _property = "Success"; public static string Property { get { return _property; } set { _property = ...
0
votes
1answer
31 views

GridView does not refresh changes to items when using LayoutAwarePage.DefaultViewModel

In a "Blank App" (Visual C#, Windows Store), I create a new "Grouped Items Page", then declare a MyItemViewModel class deriving from DependencyObject with a Dependency Property for a String Title. ...
1
vote
1answer
32 views

WPF Listing Binding within a list

I'm starting to go nuts here, I'm new to WPF and this seems so difficult. I come from MVC and what I'm looking to do is a snap in Razor. I am trying to bind the below: public ...
0
votes
2answers
40 views

Building an error summary in WPF

My form is bound to an object that implements IDataErrorInfo and it validates correctly on a field by field basis. I would like to have some way to summarize the results based on the fields on the ...
0
votes
1answer
10 views

Using dependency properties

I have I very simple WPF game: It has a couple of buttons and some labels. Every time the user clicks on a button I have a counter that I raise by 1. I want to show to counter value on every label on ...
0
votes
1answer
22 views

Add Control after Items in GridView Group

I'm currently developing a Windows 8 Store app that uses a Grouped GridView in the HubPage showing Highlights for some Categories. So far, when clicking the Header you see More Highlights for this ...
3
votes
1answer
36 views

Set culture for a WPF DateTimePicker validation

I use a DateTimePicker on a WPF application. I would like to bind the .Text property to the SelectedDate, so I use binding like this: <DatePicker x:Name="DateTimePicker_Date" ...
0
votes
1answer
60 views

How To Get Json Data in Windows Phone 8

i'm trying to carry my android app to windows phone 8 enviroment. The question is clear, how can i get my json data from web api into my application ? It can be LongListSelector or Grid to fill.. ...
0
votes
0answers
45 views

No defaultview of datagrid

I want to filter data that's loaded in the datagrid. This datagrid is bounded to an entity of EF. I read different posts on the internet about filtering and from all those posts I could create the ...
4
votes
2answers
85 views

Is it possible to use reflection directly in XAML

In my DB I have a table that contains different items of userControls with the attributes "ClassName", "AssemblyName" and "NameSpace" which are necesarry to init the instances using reflection. My ...
2
votes
1answer
73 views

Unable to Style TabControl

Within my application, I have recently tried to jazz it up in terms of its appearance so I have tried using MahApps.Metro. But I've hit a little of a snag. Within my application, I have a tabcontrol ...
6
votes
1answer
80 views

WPF: Custom tooltip arrow placement

I have a custom tooltip style that basically creates a nice black tooltip with an arrow pointing to the location of the item you hovered over. The problem is that sometimes the tooltip will not ...
0
votes
0answers
34 views

'System.StackOverflowException' occurred in WindowsBase.dll

Exception details does not have anything useful, it states {Cannot evaluate expression because the current thread is in a stack overflow state.} I've a complex Visual Tree structure in which several ...
0
votes
1answer
11 views

WPF SharedGridSize group with ItemsControl embedded Grids

I am trying to embed multiple grids within another grid using an ItemsControl and have all the child grids share the same row heights: <Grid> <ItemsControl ItemsSource="{Binding ...
0
votes
1answer
61 views

MVVM: Convert code-behind to XAML

I've got an AllTopicsViewModel and its got a property ExerciseVM which is an AllExerciseViewModel, since I want to be able to refresh the AllExerciseViewModel of an ExerciseView so I am doing it like ...
2
votes
2answers
50 views

Adding Slider values from DataTemplate in ListView

I created a DataTemplate containing: A TextBlock and a Slider (x:Name="_score") in a horizontal stackpanel. The TextBlock refers to a new ObservableCollection, where class Category contains a string ...
0
votes
1answer
14 views

Binding to an array index of the data source of a control

I have an array that is a public property like so: public bool[] Values { get { return _values; } } and some RadioButtons bound to the array, with a Command and CommandParameter. <RadioButton ...
0
votes
0answers
25 views

Nested class in XAML

In XAML for WPF you can reference a nested class with the plus sign OuterClass+InnerClass This syntax doesn't seem to work in XAML for WinRT. Is there another syntax that works?
0
votes
1answer
34 views

how to put a button at the bottom of the listbox in wp7?

Windows phone 7.5 and above. I wanna add a button at the bottom of the list, so the user can click it to fetch more articles. I put a button inside a listbox in xaml. But it does not work, when the ...
2
votes
2answers
55 views

Add variable number of control

I am relatively new to WPF, can someone point me to the best methodology please? I will be creating a block diagram with lines linking the blocks. The boxes will all be in a row so I was thinking of ...
-1
votes
0answers
19 views

adding objects to WPF viewport3d and manipulating the view

I want to create a 3d application using WPF where the user can input some coordinates for a rectangular prism (depth,width length) and location (top left corner) .the depth is always negative. the 3d ...
0
votes
3answers
45 views

Show alternating images for changing ViewModel states

For different user interfaces I want to show an image depending on a state of a ViewModel object. For example: I have a database connection, if connected, I want to show a green database image, if ...
0
votes
0answers
31 views

Wpf dictionary exception when it's declared in App.xaml

At work we have a library containing a lot of useful graphic features for WPF. However, there's a problem in design mode. Nearly all main styles are declared within this library, so in the application ...
2
votes
1answer
32 views

Column Alignment In Listbox

Is there a better way to align the columns? When the text changes the 3 and 4 columns move all over the place. I have tried setting Width to * and auto, but nothing seems to work. <ListBox ...
0
votes
0answers
51 views

WinRT MediaElement Source

I am attempting to have multiple MediaElements on a page and have each element rotate videos every 10-20 seconds. The MediaElements are all started at the same time, so they play fine until I try to ...
2
votes
1answer
20 views

How can you programatically scroll a WrapGrid to a specific item within its ItemSource in a Windows Store App?

I have the following: <GridView.ItemsPanel> <ItemsPanelTemplate> <WrapGrid Orientation="Vertical" MaximumRowsOrColumns="10" /> ...
0
votes
1answer
20 views

Swipe-select on a GriedView Item in MVVM

I have a GridView where I want to be able to swipe-select the items or click on them. As I wanted to work with MVVM the Click was handled by a Command on a Button which is the root of any item in the ...
-2
votes
0answers
31 views

Resize BitmapImage with c# - windows 8 store app [duplicate]

I am downloading images and want to resize them to half their sizes. I have checked on some codes online and examples made by other people but they seem to be resizing images already stored in the ...
0
votes
1answer
36 views

How to disable the Wide Tile for SecondaryTiles in Windows Phone 8?

I am developing an application in Windows Phone 8. Having set of Tiles in my Home screen and these tiles can be pinned as a SecondaryTiles in the Windows Start screen. Basically i am using ...
0
votes
0answers
41 views

Half day schedule in silverlight

I have a TimePicker, which make me choose a time in a dropDownList, like this But, I'm wondering, if it is possible to have, instad of this, a little calendar (like in outlook) based on a particular ...
0
votes
1answer
66 views

Need to bind/populate combobox in WPF forms, ideally with value and display

My application for other reasons isn't set up with the MVVM architecture and I'm not able to at this time. The only thing that I need to modify now is a combobox to be populated from the database (it ...
0
votes
0answers
33 views

Updating DataTemplate on LoadingRowDetails Event using MVVM

I have a Grid which has a childGrid inside DataTemplate: <RadGridView Grid.Row="0" x:Name="parentRadGrid" LoadingRowDetails="parentRadGrid_LoadingRowDetails"> ...
0
votes
2answers
27 views

Update bound property in ItemsControl

Quick description of my setup: Disclaimer: The code is only to show what I want to do. The command binding for instance is done with event triggers etc. I'm pretty sure this wouldn't even build, but ...
0
votes
0answers
21 views

TemplateBinding a GradientStop Offset

I'm trying to bind a GradientStop Offset in order to display some sort of progress bar inside an Ellipse. The CustomControl is a button and if possible I'd like to keep it that way. Of course there ...
0
votes
2answers
68 views

Mouse Double Click DataGrid row

I have a DataGrid style template that I wish to add double click behaviour to. The binding should be correct but I cannot seem to get the xaml compiling / working. All objects added to an ...
0
votes
0answers
34 views

Windows Store App Unit test fails when using custom control

I have a Windows Store App (C# + XAML) and wanted to create some unit tests for it. I created the unit test project for this within my solution and the default test method works fine. Then I added my ...
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
49 views

Create Calendar Control in Windows Phone 8

How can I use Microsoft Templates to create Calendar Control ? Can someone provide me a code for this ? or which references should I have to create a calendar. And one more question, how references ...
2
votes
3answers
66 views

Apply style for buttons in all Windows in WPF

I have a style setup in my XAML for the creation of round corner Buttons in my WPF window. I would like this style to apply to all buttons on all windows in my application. Is there a way, similar to ...
0
votes
0answers
32 views

Get specific UIElemet from grid in Windows Phone with visual tree helper

I have grid view in windows phone xaml page and this grid contains many UI element like buttons, checkboxes and textboxes. I want to search some specific UIElement by name from that grid and want to ...
1
vote
0answers
32 views

interface custom preprocessor task in WP7 project compilation by modying the csproj file

I have a Visual Studio solution with 2 Windows Phone 7 projects. One is the main project, the other links its xaml pages from the first. I try to modify the .csproj file of the second project in ...
0
votes
1answer
31 views

How do I bind TwoWay between a CheckBox in a UserControl and the ViewModel in the wider scope?

I have a UserControl that has a CheckBox on it. When I consume the UserControl on my main XAML page, I'd like to TwoWay bind a property on the control to a property on my ViewModel e.g. ...

1 2 3 4 5 326