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
2
votes
1 answer

Removing shadow from ScatterViewItem isn't working

I always used this code to remove the shadow from a ScatterViewItem: ScatterViewItem svi = new ScatterViewItem(); svi.ApplyTemplate(); svi.Background = new SolidColorBrush(Colors.Transparent); svi.ShowsActivationEffects = false; svi.BorderBrush…
anon
2
votes
4 answers

How to use lame.exe in my application?

I capture audio files in the wave format in my Microsoft Surface application. Now for file size reasons, I'd like to convert the wave file into a mp3 file. I read in the Internet that a good possibility to do that is using lame. But how can I call…
anon
2
votes
3 answers

Surface for non-surface applications

Recently I've stumbled over surface. It's incredible and so easy to develop small applications with surface. Surface is build upon WPF, so surface uses XAML. My idea is now to develop applications with surface. I've searched for some information…
System.Data
  • 3,878
  • 7
  • 32
  • 40
2
votes
1 answer

Is a UserControl not in the HitTestResult?

I defined a usercontrol:
anon
2
votes
2 answers

Is it possible to run a Perl Script on MS Surface?

And if this is possible, how can I do that?
anon
2
votes
2 answers

Using WPF expander control on microsoft surface platform

I am trying to use the Expander control in the surface application. I have seen its not a surface control so application compiles and control shows up but the contacts are not working. Is there anyway I can modify the contact events and make it work…
K Singh
  • 1,710
  • 1
  • 17
  • 32
2
votes
0 answers

Unity3D build freezes unless mouse is moved

I have a simple Surface 2.0 (PixelSense) application that sends UDP messages to my Unity3D game when there are touch events since Unity doesn't support .NET 4. When I run the game in the Unity editor everything works fine, but when I run the actual…
V3XD
  • 21
  • 4
2
votes
1 answer

C# Win Form: Detect last interaction (touch) and display confirmation box

Windows Form Application: Is there a way to check the time for which the device (Microsoft Surface 55 inch touchscreen) hasn't received any interaction (touch) from the user and if it is more than 5 mins than a confirmation box should be displayed…
Yash Saraiya
  • 1,035
  • 1
  • 20
  • 40
2
votes
2 answers

Unable to cast object of type 'System.String' to "..Controls.SurfaceListBoxItem' exception

All that i'm trying to do is to compare, for each value in a listbox, its value with a chosen one and then set the match index as selected. For some reason the exception in the title is raised. I don't understand why though. Code: …
user228137
  • 762
  • 1
  • 16
  • 34
2
votes
2 answers

Microsoft Surface: Adding IdentityTag to TagVisualizer shows a cross-hair. Why?

in my Surface application happens this: When I put an IdentityTag onto my TagVisualizer, a white cross-hair appears. This TagVisualizer adds no TagVisualization when adding a Tag, it just calls some methods in its "VisualizationAdded"-Event. In my…
sofri
  • 285
  • 1
  • 3
  • 10
2
votes
1 answer

Can a ScatterViewItem dynamically resize to fit its content?

We're hosting a control inside of a ScatterViewItem that dynamically changes its size at runtime as a result of having various sub-elements added, removed, and/or collapsed. We would like to have the hosting ScatterViewItem resize as well to…
user165503
2
votes
0 answers

C++ sdk for surface 2.0

I have a small application developed by me. It is completely written in c++ and qt5. I want to intergrate surface 2.0 touch api with it. Basic googling says that this is not directly possible as you need to write in c# and call the dlls from c++…
2
votes
1 answer

XNA template for surface missing in Visual Studio 2010 SP1

I installed Visual Studio 2010 and then installed VS service pack 1. After I installed GSE from This link. After that I tried to create new project for surface but it didn't shown me XNA Template for it. It just displays me only one project template…
Asadullah Ali
  • 1,056
  • 14
  • 31
2
votes
1 answer

Issues with VNCSharpWpf for WPF in Microsoft Surface

first of all, I have been learning Microsoft Surface for about 1-2 months now and my project requires me to look into incorporating the use of a VNC viewer into my Surface Application. I have looked into VNCSharp and VNCSharpWpf from VNC control for…
angelhalo
  • 131
  • 1
  • 1
  • 8
2
votes
2 answers

Surface development: Translate/Rotate/Scale items without ScatterView

Is it possible to transalte/rotate/scale items without a ScatterView? I want to manipulate items which can be on top of other elements like a button, list or a custom control which should be static. When I add them to a ScatterView, they all become…
Maarten
  • 21
  • 3