MPI Scatterv c++ vectors
Questions tagged [scatterview]
70 questions
1
vote
1 answer
Print a WPF control to an Image control
I'm writing an application for the surface that requires displaying data in a table (i.e. DataGrid). This is great, except the table captures the touch interactions for the ScatterViewItem control (basically a panel that can be spun, shrunk, and…

Ryan Amos
- 5,422
- 4
- 36
- 56
1
vote
1 answer
Making the shadow from a ScatterViewItem a different shape
I am developing a program for Surface using Expression Blend and Visual Studio.
I have a custom user control with an ellipse and a label in a grid.
This will need to be placed in a scatterViewItem.
My problem is that the scatterviewitem will cast a…

Vargen
- 696
- 2
- 7
- 20
0
votes
1 answer
While pausing a Storyboard, Does the Property being animated get locked ? Does the AnimationClock stops?
ParallelTimeline OTimelineAnimation = new ParallelTimeline();
for (int i = 0; i < _Bubbles.Count; i++)
{
_StryBrd.Children.Clear();
PointAnimation ToMovePointAnim = new PointAnimation();
ToMovePointAnim.From = _Bubbles[i].CurrentPoint;
…

Tarek Khalil
- 405
- 4
- 13
0
votes
1 answer
ScatterViewItem.Center (X and Y) properties returning NaN
I have a XAML based ScatterView to which I'm programmatically adding more Scatterviews (henceforth known as Scatter2s).
Each of the Scatter2s work fine - they each contain ScatterViewItems which in turn contain an Ellipse shape, and these are all…

ataulm
- 15,195
- 7
- 50
- 92
0
votes
1 answer
Event Handler for ScatterViewItem Location Change in Surface SDK?
Does anyone know of an easy way to capture a ScatterViewItem's position (Center property) once it loses momentum and comes to a stop after being flicked across the screen? I have a "hotspot" area set up that I'd like to initiate a file transfer…

CountZachula
- 170
- 1
- 7
0
votes
1 answer
WPF - Adding ScatterViewItem.Content to a StackPanel as UIElement
I'm attempting to make a application where you can drag ScatterViewItems next to each other, and the items will dock together, so that you can move them around as a single item.
Right now I'm trying to create a StackPanel and add the content of the…

George
- 1
0
votes
1 answer
Modal ScatterViewItem
Can anyone please point out how could i possibly create a modal ScatterViewItem?
I want a ScatterViewItem that will stay on top preventing interaction with anything else until closed. Kind of like a myWindowInstance.ShowDialog() in window…

Nick
- 1
0
votes
1 answer
Name a ScatterViewItem programmatically
Currently I'm working on the Microsoft Surface primarily creating an application that dynamically creates ScatterViewItems based on a database (Though not binded, for reasons that are unimportant to the question.) My problem comes when I try to…

James Boyden
- 454
- 4
- 8
0
votes
1 answer
WPF TranslateTransform is ScaleTransforming
In the following code part is Part class's object which is inherited from ScatterViewItem class (Microsoft.Surface.Presentation.Controls). part.Content is Path geometry:
GeometryGroup gGroup = new GeometryGroup
{
FillRule =…

Bahriddin Abdiev
- 328
- 1
- 14
0
votes
1 answer
Is it possible to only use children of the main childelement in the scatterview as scatteritems?
I'm using the Telerik api to take use of docking and my xaml looks something like this:

Ikky
- 2,826
- 14
- 47
- 68
0
votes
1 answer
How to programmatically scroll a SurfaceScatterView
The SurfaceScatterView is an ItemControl,
I want to scroll it into a position that I choose,
Can any one help ,
Thanks

Khaldoun
- 487
- 1
- 5
- 25
0
votes
1 answer
why is MPI_Scatterv 's recvcount a fixed int and sendcount an array?
this is the synopsis of MPI_Scatterv()
int MPI_Scatterv(const void *sendbuf, const int *sendcounts, const int *displs,
MPI_Datatype sendtype, void *recvbuf, int recvcount,
MPI_Datatype recvtype,
int root,…

bcsta
- 1,963
- 3
- 22
- 61
0
votes
2 answers
Rounding corners of scatterview item - Microsoft surface SDK
I have an image overlaid on the scatterview item. The scatterview item contains stackpanel and few textblocks. On overlaying and putting the main window's background as transparent, I can still see the corners which do not gel well with the image.
I…

K Singh
- 1,710
- 1
- 17
- 32
0
votes
2 answers
WPF ScatterView binding to multiple sources
I am using a ScatterView and am currently binding to a folder so that when my app starts up some sample images are displayed, this works great.
…

Bear
- 1,541
- 3
- 20
- 32
0
votes
1 answer
ScatterViewItem custom size
I develop surface app using MVVM pattern.
I have different Views and I want to place them into one ScatterView.
I want my ScatterViewItem size correspond to the size of my Views?
code example:
Yury