Tagged Questions
0
votes
0answers
48 views
CollectionViewSource - headers without content
I would like to have GridView with CollectionViewSource but I need only headers without content sometimes, so I have a method:
internal List<GroupInfoList<object>> GetGroupsByLetter()
...
0
votes
1answer
41 views
Issue with Swipe inside ListView
I am using a ListView in a Windows Store App.
Whenever I start swiping(using simulator tap mode) over the list view all the items move together as illustrated in the picture.
How can I disable this ...
0
votes
2answers
55 views
GridView width inherited from parent
I have a StackPanel with a fixed width. Inside that StackPanel I have a GridView, which Width should be limited to its parent width (smth like Width="*").
My sample XAML:
<StackPanel ...
0
votes
3answers
56 views
Find which UI Element the mouse is over
How to find the UI Element which is directly over the mouse over point.
Here Experience Age, Experience Month are Custom controls.
How do i get the Experience Month UIElement?
1
vote
2answers
43 views
How to adjust height of ListViewItem as *?
I have a ListView and am adding 5 ListViewItem. in that the 3rd item's height should take the rest of the height like row definition given in the code.
<Grid.RowDefinitions>
...
0
votes
0answers
50 views
MediaElement: play without delay between tracks
I try to play two and more tracks without delay in between.
For testing I write following code:
FileOpenPicker picker = MainPage.CreateFilePicker(audioExtensions);
IReadOnlyList<StorageFile> ...
1
vote
2answers
267 views
Windows 8 development WPF or Windows Store XAML
I've been developing a windows store application for a windows 8 tablet (Microsoft surface). So far the application has been designed using XAML-RT/C# using a SQLite database. The application won't be ...
0
votes
1answer
120 views
ListViewItem IsSelected Binding - Works for WPF, but not for WinRT
I'm trying to bind the IsSelected property of a ListViewItem to a property in a ViewModel. It works fine in WPF, but in Windows RT the IsSelected property is never getting set.
public class Item : ...
0
votes
2answers
57 views
How to set XAML property via a function call?
Good day....
I have a simple page with a rectangle, an ellipse, two sliders and a textblock.
The two slider controls (via binding) the height and width of the rectangle.
I would like to set the ...
1
vote
1answer
33 views
Cannot set ScrollUnit or ContentScroll in Windows Store App
I have a VirtualizingStackPanel with Horizontal orientation. I am looking for a way to make the ScrollViewer scroll to content rather than by pixel.
I know that .NET 4.5 brought the ScrollUnit ...
0
votes
3answers
263 views
How to access Parent's DataContext in Window 8 store apps
This is a common situation in XAML based apps (WPF/Silverlight/WinRT).
WPF related link -> WPF Databinding: How do I access the "parent" data context?
RelativeSource with AncestorType, and ...
0
votes
1answer
77 views
Why do I get 'ResolveManifestFiles task failed' error when building a WPF app that references WinRT API?
I am working on a WPF app that I want to create for Windows 8. I followed steps mentioned in Hansleman's blog to make some manual modifications using WinRT functions in a WPF app. Everything worked ...
0
votes
0answers
250 views
WinRT Focusing a UserControl
So I have a UserControl that is used to play a video. This control is displayed as an overlay of other controls. The controls behind the UC with the video player have a Back button that allows the ...
0
votes
1answer
87 views
ComboBox width different from popup width
How to make a ComboBox change its width based on content but make the popup list with items to be of constant width?
0
votes
1answer
72 views
Default SolidColorBrush
I have a converter which converts a custom object to a SolidColorBrush for ListView text color of items that can be either from the color Red or Black.
The problem is that the PointerOver template ...
1
vote
1answer
76 views
How to cast from Windows.UI.Xaml.UIElement to System.Windows.Controls.UIElement
I'm trying to create a new UI for an app I developed for the Windows Store using the Windows Runtime API. This new client is going to be a WPF Desktop App. I'm trying to reuse as much code as I can ...
0
votes
1answer
26 views
Is there a way to size a border to its contents? (Winnrt Xaml)
I have a border around a textblock to create a nice background with rounded corners. But no matter what I do the border width is always the size of its parent. I want to limit it to the size of its ...
1
vote
1answer
101 views
How to convert binary to image in WinRT app?
i have sample code (WPF) that convert my binary data to image(png, jpg, jpeg):
BitmapFrame imgSrc1;
BitmapFrame imgSrc2;
BitmapFrame imgSrc3;
imgSrc1 = new JpegBitmapDecoder(ms, ...
0
votes
1answer
174 views
Create World matrix for augmented reality application in windows 8 tablet
Can anyone please suggest how to create 'World Matrix' for augmented reality application in a Windows 8 tablet. The following code already exists for windows phone:
Matrix world = ...
2
votes
2answers
298 views
How to save data on Windows Store App Close?
i have the following problem. When the user closes the Windows store app, i want a text file with data to be saved.
What method should i write so that when closing the app a file gets saved ?
0
votes
1answer
275 views
WinRT: Image - image doesn't show up if not included as resource
My Windows Store app/Metro/Win RT app downloads image from server on to some local folder. I need to bind Image control to the downloaded image at runtime.
The problem is that image doesn't show up ...
2
votes
2answers
358 views
How to create Word document in WinRT
I'm currently developing application using WinRT/C#. It is second version, first was developed on WPF. In application I need to generate some reports and export them into MS Word document.
In first ...
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?
7
votes
2answers
713 views
WinRT (C#/XAML) Scale without blurring
I've put together a basic animation which has a Control scaling from 0.1 to 1.0 (x & y). The problem I keep seeing throughout is this "blurring" of the said controls before they settle on the ...
1
vote
1answer
194 views
ClipToBounds property in WinRT
I'm trying to find the equivalent of ClipToBounds in Windows Runtime.
If it doesn't exists is there a way to recreate this behavior ?
0
votes
2answers
137 views
ScrollViewer catching PointerPressed + PointerMoved to scroll
I'm currently creating a little drawing program, and I've a white Grid inside a ScrollViewer.
To detect if user is drawing, I catch the PointerPressed event to set my variable isUserDrawing to true, ...
0
votes
1answer
107 views
How to clip Arc from image?
I am doing winrt application,i have an image which is circle, i need to clip the arc dynamically from the circular image, with different angles, how can i do this?
0
votes
0answers
164 views
How to add animations to a ListView in Windows RT?
I've got the following ListView defined in xaml:
<ListView Grid.Row="1"
Grid.Column="0"
Margin="20,0"
ItemsSource="{Binding UIModel.CommandHistory}" ...
1
vote
1answer
106 views
Long term client API strategy for building a Windows application? [closed]
I'm starting to architect a new Windows application that will require a fairly rich client interface, but I have no idea what client API I should go with (WPF, Silverlight, WinRT, HTML5, other?). I'm ...
0
votes
0answers
76 views
Check if XAML element is hiden by other elements [closed]
so I am writing a paint Windows Store app and when I run it on my laptop, animations slowly get more jumpy.
I am using a Canvas element and adding a Line element to it's children on each mouse move. ...
1
vote
3answers
360 views
Metro/WinRT/Windows 8 Is it possible to clear the binding of an element from the code behind?
I have a set of items that need to populate a set of TextBox's on a page. Every time the user clicks on a different item I want to remove the old binding from the last item and set the new bindings ...
0
votes
3answers
220 views
Access MediaElement Control of Different Page from App.xaml.cs
I have a MediaElement control in Media.xaml which I would like to access from App.xaml.cs like this:
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = ...
0
votes
2answers
1k views
Render Html in XAML + windows 8
I have a proprety in my model that contain HTML ex:
public class watch
{
public string description=<div>hello<br/> world</div>
}
I need in the view in xaml code to bind this ...
6
votes
2answers
3k views
How to read file (Metro/WinRT)
I'm quite astounded by the apparent complexity of this seemingly simple task. I know that I have to use the StorageFile class, and I've found this example, but I just want to read one single file, to ...
1
vote
2answers
243 views
MVVMCross how to use with WPF (Windows)?
How can I use it on WinRT (Windows 8) - I can't compile it. Can I use it also with "normal" Windows (WPF)?
0
votes
2answers
132 views
c# code executing in the wrong order - weird behaviour
I have a ListView bound to a view model which contains an ObservableCollection in a simple example app.
public class ViewModel : INotifyPropertyChanged
{
public ViewModel(){}
public event ...
9
votes
6answers
949 views
How do I work with images in a portable class library targeting Windows Store Apps and WP7,WP8,WPF?
I am working on a first PCL that targets : WSA (Windows Store Application), WPF,WP7,WP8. We can say that it is a rolerdex kind of application, you have contacts , they have contact details and images. ...
5
votes
2answers
452 views
Use MonoGame in WPF
Can I mix MonoGame with XAML in WPF appliaction? For example: core of game written in MonoGame, but UI written in XAML and placed on top of MonoGame-Canvas. I know that I can use XAML on MonoGame in ...
0
votes
1answer
207 views
Web fonts and HTML5 Application cache feature in WPF WebView control (Metro)
I'm creating a metro application using C# and WPF.
I want to include a WebView for showing some web content. But the problem is, Some HTML5/CSS3 Features are not available in WebView, while they are ...
1
vote
2answers
652 views
Change Caret Color in WinRT?
So in WPF and Silverlight you could set the caret color for TextBox using TextBox.CaretBrush, but in WinRT it seems in all their wisdom they removed this property. So now if the TextBox is a dark ...
1
vote
1answer
375 views
Replicating WinRT Pixel Density changes in WPF possibly using DPI
I am using WPF to generate tile images for my WinRT app. I have a tile UserControl which is converted to PNG and this works well (It does, please don't tell me otherwise). WinRT passes me a scale ...
1
vote
1answer
66 views
DataTemplate for View made up of different Views
In a Windows 8 style app I have a View (or page) which is made up of several other Sub-Views.
Each of these has an associated ViewModel and they are defined and bounded via the MVVM Light ...
0
votes
1answer
296 views
Tree structure as a ItemsControl's ItemsSource
I'm trying to bind a simple tree structure to an ItemsControl's itemsSource in a Win 8 (formerly called) Metro app.
My structure implements the INotifyPropertyChanged interface, and also notify, when ...
0
votes
1answer
750 views
WINRT TextBox Number Formatting not respecting Current Culture
I am binding a float property to my TextBox control. Thats working correct if I am using "en" as my language Preference.
Entering a number "1.123" is correctly parsed.
If I Switch mur culture to "de" ...
0
votes
1answer
79 views
Elements placed randomly in panel
I'm looking for panel, which can place every item in collection in random place, with random rotation.
It will be great, if it would be open source!
I'm writing in WinRT, XAML, but I can port it from ...
-1
votes
2answers
604 views
Should I learn WPF 4 if my goal is to develop for WinRT? [closed]
I have recently been reading Adam Nathan's excellent WPF 4 Unleashed book. However, my goal is to be able to develop WinRT applications ( using C# ) and I have already noticed some differences between ...
5
votes
1answer
620 views
what is the WinRT equivalent of InputBindings?
WPF allows me to easily bind keyboard shortcuts at the window level to a method using the InputBindings property. What is the equivalent of this in WinRT? What is the right way to bind keyboard ...
0
votes
2answers
405 views
How to use Windows 8 run time class MediaCapture into WPF app to show web cam preview?
I am developing Windows 8 WPF desktop app. I need to preview webcam into my app. I come to know that MediaCapture class allows this ...
1
vote
1answer
427 views
Component moving and resizing using Adorner, AdorrnerLayer, AdornerDecorator, Thumb in WinRT XAML/C#
I am developing a paint-like application for Win 8. I am using this WPF app as a reference.
It uses AdornerDecorator & Thumb classes for moving and resizing components; are these available in ...
0
votes
1answer
155 views
What is the WinRT equivalent of WPF ParallelTimeline?
I'm porting some WPF code to WinRT. The code uses System.Windows.Media.Animation.ParallelTimeline to syncrhonize two animations. I don't see a corresponding ...

