Advanced Forum Search Results
-
Allen,
I am still not able to use the projectionmatrix for the situation that if I have a point with coordinates (x,y) and a projectionmatrix P how to get the new coordinates (x', y') after the projection.
I tried a sample application where (x,y) are the relative coordinates to the coordinates of the center of rotation (in my case ...
-
Hi Allen,
My scenario is that I want to use a PlaneProjection for a surface (rectangle) in order to create a 3D-effect (RotationX = x degrees, CenterOfRotationY=1.0). On that surface I want to place figures (controls) which are 'standing' on that surface. In other words they can not use the same projection, otherwise it would look as if ...
-
I know the GlobalOffsetZ is the perpendicular line to the monitor, but because a monitor is only 2D the depth is suggested by 'scaling' objects. The Silverlight runtime uses an algorithme to calculate this 'scale'. I would like to know what that algorithm looks like, how they calculate that scale?
Anyone?
-
Hi all,
If I use a PlaneProjection on a UIElement where I only set the GlobalOffsetZ property, the UIElement is scaled. For example if the GlobalOffsetZ is set to -1000 I can see that the UIElement is scaled with a factor 0.5. Is there a way to calculate the height and width, or the scaling factor, of the UIElelement before the actual ...
-
I have an application which makes heavily use of the isolated storage. As a sort of an experiment I don't use a central database on a webserver, but still people are able to communicate (see http://www.ToolToMeet.com). To make it more robust, I would prefer to use a database.
I know there is an option of using Google Gears. I saw some ...
-
See this web app http://www.ToolToMeet.com of how isolated storage can be used instead of using a central database
-
That is correct. I had the same issue when showing a popup control. I didn't want the popup to show until everything was loaded. Couldn't get it by using visibility proporty because loaded event was not fired if the child was collapsed. I solved it by using the opacity property.
-
Another workaround might be to create a button in every listboxitem and react to the click events of the buttons.
-
Maybe you should consider 'containment' instead of 'inheritance'.
-
Do you still subscribe to the UnhandledException event, which is placed standard in the App class constructor method:
this.UnhandledException += this.Application_UnhandledException;
Otherwise you you probably handled the error somewhere up the stack.