Questions tagged [pixelsense]

Microsoft PixelSense is a large-touchscreen computer platform released by Microsoft in 2008. Applications for PixelSense are developed in .NET using either WPF or XNA for the graphical interfaces.

PixelSense is a hardware and software specification for computers with large table or wall-mounted touchscreen interfaces.

PixelSense development is done using .NET and a special purpose SDK that contains controls and classes to make use of the hardware. Custom controls include SurfaceButton and SurfaceListBox that understands multitouch interaction.

Before 2012, PixelSense technology was branded "Surface", and many programming APIs still use the old terminology. The Microsoft Surface multitouch tablets are based on the unrelated Windows RT technology and, as of 2012, PixelSense hardware cannot run Windows RT apps, nor can the Surface tablets run PixelSense apps. For questions related to Surface tablets, use the tag .

399 questions
0
votes
1 answer

MouseDown event doesn't fire on LibraryBarItem

I'm trying to bind events to my LibraryBarItem, however when I finished like this, the MouseDown event will never be fired, can anybody tell me what happend? LibraryBar folderContainer = new LibraryBar(); foreach (Image folder in…
Elderry
  • 1,902
  • 5
  • 31
  • 45
0
votes
1 answer

Scale/Resize the ScatterViewItem which is create through DataTemplate

I got a problem with scaling the scatterViewItem which is created through DataTemplate. I built something like this: http://msdn.microsoft.com/en-us/library/ff727736 It also have the same problem with my project(if you like to see:-)…
0
votes
1 answer

How to brush a button's background using an System.Drawing.Image object?

I'm using C# and WPF in Surface programming, now I have an Image object, but failed to use as the background as a Button object...Here is some related code: using System.Windows.Media.Imaging; using System.Drawing; using Microsoft.Surface; using…
Elderry
  • 1,902
  • 5
  • 31
  • 45
0
votes
2 answers

Hide all the controls except one

Suppose that I have this XAML code : How can I hide…
Wassim AZIRAR
  • 10,823
  • 38
  • 121
  • 174
0
votes
2 answers

ScatterView item orientation and PrimarySurfaceDevice.Tilt

I'm working in Visual C# 2010 Express with WPF to develop an application for a Microsoft Surface table, and cannot for the life of me find the simple solution to this problem. When using a ScatterView control without setting a custom template for…
Erstwhile
  • 71
  • 8
0
votes
1 answer

Removing the ScatterViewItem on clicking a button

My group is developing a surface project for school and we are all quite new to this technology. The situation is : We have a page with 4 surface buttons. Whenever a user click/tap on one of the surface buttons, a popup image will come out. Since…
0
votes
1 answer

Require two fingers to initiate drag-drop event

I'm trying to create a MS Surface 2.0 application that involves multiple SurfaceListBox elements and children dataitems. The key interaction here is dragging the dataitems along the list boxes in a drag-drop fashion (which I know has been heavily…
Nate Frueh
  • 79
  • 1
  • 8
0
votes
1 answer

ScatterViewItem IsManipulationEnabled = false Routing Event

I have a ScatterViewItem that I want to host a UserControl inside. Now I want to be able to toggle IsManipulationEnabled on the ScatterViewItem to lock it into place on a ScatterView. When it's locked I want to be able to manipulate the UserControl…
David James Ball
  • 903
  • 10
  • 26
0
votes
1 answer

I need to identify basic gestures which are performed in surface application?

I need to identify basic gestures which are performed in surface application? My final requirement is to find out basic gestures with their parameters,properties which determine gesture functionality and then pass them to another application.Thanks
0
votes
2 answers

WPF Changing ListboxItem background Color when Selected

I have a surfacelistbox as follows
Masinde Muliro
  • 1,175
  • 3
  • 24
  • 38
0
votes
1 answer

Navigation between WindowSurface

I have created two WindowSurface (WPF), and I want to navigate betwen them. I've created a simple button with the following code : SurfaceWindow2 sw2 = new SurfaceWindow2(); sw2.Show(); This on displays the second SurfaceWindows but in a new…
Wassim AZIRAR
  • 10,823
  • 38
  • 121
  • 174
0
votes
1 answer

Different behaviour of the ElementMenu in Microsoft Surface 2

I was following this tutorial to create an ElementMenu on the Microsoft Surface 2. This tutorial was made for the Microsoft Surface 1, and showing as result this scrrenshot I did the same thing in the Microsoft Surface 2, and I got this result…
Wassim AZIRAR
  • 10,823
  • 38
  • 121
  • 174
0
votes
1 answer

Making an object "Throb"/Grow and Shrink

pretty new to WPF, but i've made a Surface app to get peoples attention in my office reception. http://www.diaryofaninja.com/blog/2012/06/03/building-an-image-and-video-viewer-for-microsoft-surface-20-in-no-time-at-all what I would like to do, is if…
Doug
  • 6,460
  • 5
  • 59
  • 83
0
votes
1 answer

Binding BoundingRectangle to custom control dependency property

In our project we have created a custom control with some dependency properties. On the xaml page where we are using this control we are binding the BoundingRectangle property of the Map control to this custom control so we can use these…
ChristiaanV
  • 5,401
  • 3
  • 32
  • 42
0
votes
1 answer

Removing Scatter view item

If I am using scatter view that contains Library Controls. The user could drag element from the library container to scatter view. After that the user could remove the image. I created style that contain surface button and image within view box as…
1 2 3
26
27