-1
votes
0answers
33 views

When is the PropertyChangedCallback fired

I have trouble understanding a problem that occured to me. I Have a UserControl that is structured somwhat like this. public class SomePage : Page { public static readonly DependencyProperty ...
-1
votes
1answer
71 views

Binding a progress bar to Loading property

I have a ProgressBar in my view which I am trying to bind to a loading property in my data model. I get an error when the property changes because it's a boolean and it's expecting an ...
1
vote
2answers
62 views

MVVM pattern - executing view operations

I'm using MVVM Pattern (with MVVM Light) to build my XAML app (win8). I have a ListView, which is bound to a property of my ViewModel. I also have a button that triggers an operation on that ...
0
votes
2answers
50 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
0answers
54 views

Controlling network connectivity from WPF application

I have a WPF (not Windows Store) program written for .NET 4.0 in C#, which was ported to Surface Pro tablets. I need add the functionality to control network connections directly from the application ...
0
votes
2answers
49 views

WPF layout changes (Fill, Full, Snapped)

I am working on a Win8 app destined for the Windows Store. Hurdles I am trying to overcome is how to deal with the different ways an app can be displayed. Currently, my main pages is a ...
-3
votes
2answers
80 views

how to create shared application between wpf and metro UI [closed]

I want to create an application that can share code and view between WPF as well as metro app(windows 8 store app). I don't know about that how it can be possible and also how it can be implement. ...
0
votes
1answer
58 views

NullReferenceException from PresentationFramework.dll

I'm fighting with a strange NullReferenceException that is apparently fired from the GetNameCore() function of the ItemAutomationPeer class. The details of the exception are below but the really ...
2
votes
0answers
123 views

WPF's TextBlock differences between Windows 7 and Windows 8

While investigating some unit tests which fail only on my machine, I noticed that TextBlock presents text differently on Windows 7 and Windows 8 machines. To inspect the issue, I created sample ...
1
vote
0answers
71 views

Tablet WPF Windows Desktop Application - Scrolling issue

I'm running my desktop application WPF on tablet ASUS ME400 Intel Atom Z2760. All working properly, but when I use scrollviewer, scroll movement with finger (abilitate panning mode horizontalOnly) at ...
1
vote
1answer
56 views

how can you disable container recycling in windows 8 app?

If you have time, create a new Blank App (XAML) template and write the following XAML code. I think creating a WPF Application is useless, because it appears as if container recycling doesn't work. ...
1
vote
2answers
66 views

ObservableCollection along with a repository

I am having trouble with grasping the concept of a ObservableCollection inside MVVM. For start I would like to point out that I am doing this in a Windows 8/Metro App, not WPF or Silverlight. ...
3
votes
1answer
48 views

Do XAML objects remain virtually present when leaving a XAML page in Windows 8 App?

I use the MVVM Light Toolkit to define the association between the view-model and the view. The container is instructed to register a view-model as a singleton instance. Thus, the same instance will ...
1
vote
2answers
91 views

Compatible with both dotnet 3.5 and dotnet 4.0

Originally it is set to use .Net3.5 for compatibility with win7. (Actually using WPF) However when it comes to users in win8 which supports only the .Net4.0, it is required for users to download and ...
1
vote
2answers
225 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 ...
1
vote
1answer
75 views

WPF+PRISM on windows 8 region.active crash

I'm working om project base on WPF .net 4 with Prism 4.0, after I upgrade my machine from windows 7 to windows 8, the project crash when reach the point of active view object view = ...
0
votes
0answers
27 views

Printing True Type Fonts to HP printer WPF/Window8

Me & my colleague were trying to Print, DrawingVisual to HP printer from WPF application in Windows 8 operating system. It just works fine in Windows XP/Vista/7 OS, but not in Windows 8. What we ...
0
votes
1answer
31 views

how to locate an item in a specific row and column in a verticaly-wrapped VariableSizedWrapGrid?

I want to locate an item in a specific row and column in the automatic-generated-vertical-wrapped-list of VariableSizedWrapGrid. My view model exposes a collection and I want that the first item will ...
3
votes
1answer
321 views

Windows 8 Desktop App: Open tabtip.exe to secondary keyboard (for numeric textbox)

We're working on a desktop WPF app that runs on Windows 7 tablets and are adding some Surface Pro units with windows 8 to the mix. We noticed immediately that the little keyboard icon no longer ...
0
votes
0answers
62 views

.NET application with SQLLocalDB performance on Atom based windows 8 tablet

A customer is interested in having a small data collection/quote calculation application running on tablets for its sales people. Does anyone have any experience with running .NET WPF applications ...
0
votes
1answer
95 views

Network Interface does not contain a definition for “”

I recently created this code for a WPF application that I was doing. The project where I'm reusing the code is a Windows 8 application. The code itself is the same so I don't really see what could be ...
1
vote
1answer
166 views

Trouble binding selected item in nested Listview

I currently use a listview nested inside a listview as a way to show a Knockout style tournament graphically, backed up in ViewModel by SectionTreeOne, which contains a List of Lists of objects ...
0
votes
1answer
42 views

Subclassed Binding works at runtime, but not in designer

In order to save typing and make code more readable, I subclassed the Binding class to make it use a specific source: public class MyBinding : Binding { private void SetSource() { ...
2
votes
1answer
116 views

WPF Performance monitor for Windows 8

I'm trying to monitor / find the biggest performance bottlenecks for my WPF application, and all the places I've been googling are saying "install the WPFPerf.msi", but to install that, I should ...
0
votes
0answers
38 views

Access/Hot Keys in WPF based application is not working in Windows 8

I have WPF application which targets .Net Framework 3.5. If I run the application in Windows 8, it is working fine. The issue is I am using hot/access key Alt + S in my application. When I pressed ...
0
votes
3answers
236 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 ...
2
votes
2answers
103 views

Why does Windows8 behave different than windows7 when it comes to theming of some controls?

as already mentiones in the topic I noticed that windows8 behaves different than windows7 converning some theming stuff of controls. The first time when I opened my application in windows8 I noticed ...
0
votes
1answer
75 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 ...
1
vote
0answers
296 views

WPF Touch Keyboard for windows 8

currently I am working on a WPF project for a Windows 8 tablet. When a user sets focus on an input field, the touch keyboard should appear. private void txtVisFamName_GotFocus(object sender, ...
0
votes
1answer
282 views

WPF: Windows 8 Tabtip close?

I've been searching and still can't find answers about this problem. i had managed to open the process of the tab tip by this code: Private Sub TextBox1_GotFocus(ByVal sender As Object, ByVal e As ...
0
votes
2answers
219 views

Usercontrol binding passing a value to a property

Since Windows8 doesn't have a fleshed out DatePicker yet, I decided to follow some of the examples out there an rolled my own. By itself it works fine, but now I have dates that I want to ...
0
votes
1answer
83 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
153 views

C# wpf window this.Top returning wrong position on Win8?

I'm a bit mystified by this. We have a c#/WPF screen capture tool that grabs a section of the desktop using Graphics.CopyFromScreen. It works fine on dozens of different machines, including XP, Win7 ...
0
votes
1answer
96 views

Visibility.Collapse doesn't fully collapse item on Win8

Im doing a filter for items in listview control. When item is supposed to be filtered out im changing visibility for that item to Visibility.Collapsed. While in Windows 7 it works great: ...
1
vote
1answer
112 views

Toggle Button not toggling

I've got a Toggle Button in WPF, however on pressing it, it does not seem to remain pressed in. It is simply acting like a normal button. Could this possibly be an issue with Windows 8? I basically ...
1
vote
1answer
255 views

Coding for Silverlight, WPF and Windows RT

We have a VS2012 solution that contains two class library projects, one that produces a Silverlight DLL and one a standard .NET DLL. The class files are shared ("Add as Link") between the two ...
0
votes
2answers
464 views

Touch/Mouse Event behavour with listbox in WPF and Windows 8

I am getting what I consider unexpected behaviour (since it differs from running the same software on windows 7) when trying to handle both mouse and touch inputs on a listbox on a windows 8 machine. ...
0
votes
1answer
196 views

How to get item details from an ItemCollection in a GridView

I've a GridView page with different elements (ItemExplorer). Each element has two TextBlocks (Name & Description) and they're binding to a Collection. I want that to when I click in a single ...
0
votes
1answer
123 views

XAML DataContext DesignInstance with nested types

Is it possible to specify a nested type for d:DesignInstance in XAML? And if so, how? If I have the following class structure: namespace MyApp { public class OuterClass { public ...
0
votes
1answer
222 views

Windows 8 DirectX SwapChainBackgroundPanel Questions

I come from two distinct backgrounds: I have much experience with WPF/XAML/C# app development and equal experience with C++/DirectX development. I hear about the ability to use DirectX and XAML ...
0
votes
1answer
218 views

Bring up desktop app from Start(or metro) screen in Windows 8 programatically

I am writing a LOB WPF program which gives some text alert (just simple MessageBox.Show();) to user. But as you imagine, the desktop app that I wrote does NOT be displayed to user unless the user ...
0
votes
2answers
65 views

Stop scrolling for a content in a scrollviewer

Is it possible to stop scrolling for a content in a scrollviewer? e.g. <ScrollViewer> <Grid> <TextBlock /> <!-- I want not to scroll this item when rest is scrolling ...
1
vote
0answers
282 views

Different background color to each group in XAML gridview not working

In windows store app (c# & XAML), I'm able to apply same background color to all groups in gridview like this. <GroupStyle.ContainerStyle> <Style TargetType="GroupItem"> <Setter ...
0
votes
0answers
42 views

Focussing/opening the desktop 'app', no matter where the user is

Is there a way to programmatically return the user to the desktop in Windows 8? I'm developing a non-metro app that allows the user to save screenshots using an overlay on which the user can crop a ...
1
vote
1answer
508 views

Windows 8 Desktop multitouch API

I'm developing a c# touch application for windows 8, desktop mode, and i'm unable to find the best approach to do it. My question is: Should I use the existent Windows 7 Touch API c# or there is a new ...
8
votes
3answers
172 views

ListBox margin is not the same in Windows 7 and Windows 8

I have styled an WPF ListBox. I'm developing under Windows 8. After setup the style to be as follows (see image), when I test the application in Windows 7, the margin is not the same. As you can see ...
0
votes
2answers
125 views

Possible to avoid elevated privileges to read text files in my app's Program Files folder?

I have a WPF app that's installed using a WiX installer. I'm writing all application data to an AppData folder -- which works fine (well, more or less). The installer needs elevated permissions (to ...
1
vote
0answers
66 views

Windows 8 and wpf printing

I use print visual in windows 7 and wpf and printing seems fine. I get small spool files. Under Windows 8 they become images several MB! Any idea what might get them treated as images??
1
vote
2answers
216 views

PointerPressed not working on left click

Creating Metro (Microsoft UI) app for Windows 8 on WPF+C#, I met difficulty with PointerPressed event on a button. Event doesn't happen when i perform left-click (by mouse), but it happens in case ...
1
vote
0answers
201 views

Workaround to WPF Menu Item Icon Behaviour in Windows 8

I have a menu in my WPF application that uses PNG images for icons. These images are stored as resources in a separate DLL. In older versions of Windows the icons (which are 48x48 pixels) displayed ...

1 2 3 4