User Bill Reiss - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:12:58Z http://stackoverflow.com/feeds/user/18967 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807282/silverlight-4-and-tcp-sockets/1808707#1808707 1 Answer by Bill Reiss for Silverlight 4 and TCP Sockets Bill Reiss 2009-11-27T13:13:51Z 2009-11-27T13:13:51Z <p>In the beta, for trusted out of browser mode, sockets are still port restricted but it looks like they're planning on lifting this restriction by RTM. The policy file is not required in trusted mode.</p> http://stackoverflow.com/questions/1771093/silverlight-4-and-xbap/1772688#1772688 1 Answer by Bill Reiss for Silverlight 4 and XBAP Bill Reiss 2009-11-20T19:20:47Z 2009-11-20T19:20:47Z <p>XBAP is in-browser only isn't it? Silverlight 4's trusted mode is only out of browser, so if you want to do anything trusted in browser you still need to use XBAP.</p> http://stackoverflow.com/questions/1758070/what-does-wpf-still-have-to-offer-over-silverlight-4/1763733#1763733 0 Answer by Bill Reiss for What does WPF still have to offer over Silverlight 4? Bill Reiss 2009-11-19T14:39:10Z 2009-11-19T14:39:10Z <p>If you want to do direct database access through ADO.NET that's not something you'll be able to do in Silverlight 4. Access to devices will still be limited although you will now have some printing support and webcam/microphone. I haven't heard anything about 64 bit support so if you want to offer a 64 bit version of your app you'll need WPF. I also think even if Silverlight 4 makes better use of the GPU, it still won't be to the level that WPF utilizes it.</p> <p>There are also a ton of other assemblies in the .NET framework that Silverlight doesn't include so if you need any of those you'll need to go WPF. </p> <p>Just like HTML5 will reduce the need for a plugin like Flash or Silverlight in some cases, Silverlight will reduce the need for WPF but there are still plenty of cases where you'll need it. </p> http://stackoverflow.com/questions/1746064/what-is-a-good-web-host-that-is-developer-friendly-for-what-i-am-trying-to-do-a/1755926#1755926 2 Answer by Bill Reiss for What is a good web host that is "developer-friendly" for what I am trying to do and learn? Bill Reiss 2009-11-18T13:21:09Z 2009-11-18T13:21:09Z <p>I've tried a few and my favorite is Applied Innovations <a href="http://appliedi.net" rel="nofollow">http://appliedi.net</a>, make sure you sign up for their IIS7 shared hosting and you'll be able to connect up using IIS7 Remote Management. They are very developer friendly and responsive.</p> http://stackoverflow.com/questions/1547525/animations-in-a-2d-c-xna-game/1558062#1558062 0 Answer by Bill Reiss for Animations in a 2D C# XNA game Bill Reiss 2009-10-13T03:29:22Z 2009-10-13T03:29:22Z <p>One thing that can help when compositing sprites (giving a hero a sword, etc) using SpriteBatch is the Origin argument on some of the Draw method overloads. It allows you to rotate around something other than the top left corner and can also help when positioning sprites that are of differing sizes. Since the Origin is specified in source texture scale, any calculations will be valid event if the sprites are drawn at a different scale.</p> http://stackoverflow.com/questions/1418816/viewbox-in-silverlight/1419157#1419157 2 Answer by Bill Reiss for Viewbox in Silverlight Bill Reiss 2009-09-13T23:57:51Z 2009-09-13T23:57:51Z <p>Viewbox in Silverlight is part of the Silverlight Toolkit <a href="http://silverlight.codeplex.com" rel="nofollow">http://silverlight.codeplex.com</a> and is not a core control. Besides this it behaves just like the WPF version and you can look at any WPF documentation to see how it works.</p> http://stackoverflow.com/questions/1373381/jquery-reduce-the-adoption-of-silverlight/1374830#1374830 1 Answer by Bill Reiss for jquery reduce the adoption of Silverlight? Bill Reiss 2009-09-03T17:27:23Z 2009-09-03T17:27:23Z <p>If there was a standard open source alternative to everything Silverlight did that was supported cross browser I'd be all for it. As long as Javascript is the only choice for client side code in the browser I'll be looking for alternatives. Silverlight appeals to me because of the .NET framework support so I don't need to have yet another language to be proficient in. Some people love Javascript, I'm just not one of them.</p> http://stackoverflow.com/questions/1373785/add-silverlight-player-in-php/1374767#1374767 0 Answer by Bill Reiss for Add Silverlight player in php Bill Reiss 2009-09-03T17:14:55Z 2009-09-03T17:14:55Z <p>The easiest thing to do is go into the bin folder after the Silverlight control builds and in the default.html file pluck out the object tag and its contents and drop it in your PHP page. You'll also need the xap file which is the packaged Silverlight application. If you're talking more about how do you communicate to the server, etc. please elaborate.</p> http://stackoverflow.com/questions/1324786/system-windows-vector-in-silverlight/1325205#1325205 1 Answer by Bill Reiss for System.Windows.Vector in silverlight Bill Reiss 2009-08-24T22:51:01Z 2009-08-24T22:51:01Z <p>I use Vector2 and Vector3 from the MonoXNA project:</p> <p><a href="http://monoxna.googlecode.com/svn/trunk/src/Microsoft.Xna.Framework/" rel="nofollow">http://monoxna.googlecode.com/svn/trunk/src/Microsoft.Xna.Framework/</a></p> http://stackoverflow.com/questions/148354/is-it-possible-to-create-and-then-upload-an-image-file-to-a-web-server-from-silve/148386#148386 3 Answer by Bill Reiss for Is it possible to create and then upload an Image file to a web server from silverlight? Bill Reiss 2008-09-29T11:57:45Z 2009-08-19T07:38:29Z <p>You can't render a canvas to a bitmap in Silverlight 2, but if you could generate a XAML version of your Canvas, you could pass it to the server and do something like this server side:</p> <p><a href="http://www.thedatafarm.com/blog/2008/01/31/ConvertingSilverlightInkPresenterImagesToAPNGFile.aspx" rel="nofollow">http://www.thedatafarm.com/blog/2008/01/31/ConvertingSilverlightInkPresenterImagesToAPNGFile.aspx</a> </p> http://stackoverflow.com/questions/1264758/what-is-the-best-way-to-split-an-image-in-silverlight/1265904#1265904 1 Answer by Bill Reiss for What is the best way to split an Image in Silverlight? Bill Reiss 2009-08-12T12:34:58Z 2009-08-12T12:34:58Z <p>You can look at Pete Blois' example here which kind of does this at a much larger scale</p> <p><a href="http://blois.us/blog/2009/07/explode.html" rel="nofollow">http://blois.us/blog/2009/07/explode.html</a></p> <p>but the concepts should be similar.</p> http://stackoverflow.com/questions/1230258/silverlight-border-am-i-stupid/1234265#1234265 0 Answer by Bill Reiss for Silverlight Border - Am I stupid? Bill Reiss 2009-08-05T16:16:44Z 2009-08-05T16:16:44Z <p>Canvas sould be avoided unless it really makes sense for what you're trying to do. For example, Canvas normally makes sense for a game, or something where you want to drag elements around. Here it's just getting in your way.</p> <p>Reasons not to use Canvas:</p> <p><a href="http://blogs.msdn.com/devdave/archive/2008/05/21/why-i-don-t-like-canvas.aspx" rel="nofollow">http://blogs.msdn.com/devdave/archive/2008/05/21/why-i-don-t-like-canvas.aspx</a></p> http://stackoverflow.com/questions/1217319/how-do-i-find-rotation-transformed-2d-coordinates-in-xna/1227940#1227940 0 Answer by Bill Reiss for How do I find rotation transformed 2D coordinates in XNA? Bill Reiss 2009-08-04T14:46:06Z 2009-08-04T14:46:06Z <p>You can also use the Matrix helper methods to create a Z rotation matrix then multiply your vector by this to rotate it. Something like this:</p> <pre><code>Vector v1; Matrix rot = Matrix.CreateRotationZ(angle); Vector v2 = v1 * rot; </code></pre> http://stackoverflow.com/questions/1211255/silverlight-c-game-or-graphics-engine/1215744#1215744 1 Answer by Bill Reiss for Silverlight C# Game or Graphics Engine? Bill Reiss 2009-08-01T03:15:39Z 2009-08-01T03:15:39Z <p>If you're targeting both XNA and Silverlight for 2D games you can use the SilverSprite library at <a href="http://silversprite.codeplex.com" rel="nofollow">http://silversprite.codeplex.com</a> and it may also be useful if you're used to a traditional game loop and draw calls.</p> http://stackoverflow.com/questions/1185948/how-to-change-x-y-origin-of-canvas-to-bottom-left-and-flip-the-y-coordinates/1187866#1187866 0 Answer by Bill Reiss for How to change x,y origin of canvas to bottom left and flip the y coordinates? Bill Reiss 2009-07-27T12:18:34Z 2009-07-27T12:18:34Z <p>I'd probably create a custom panel instead of using Canvas and give it the attached properties that make sense for your needs. Here is an example of implementing a custom panel:</p> <p><a href="http://blog.boschin.it/articles/silverlight-radialpanel.aspx" rel="nofollow">http://blog.boschin.it/articles/silverlight-radialpanel.aspx</a></p> <p>Something like Canvas is very simple since you don't have to do much in the measure and arrange overrides. </p> <p>You may also be able to inherit from Canvas and override ArrangeOverride, I haven't tried that but it may work.</p> http://stackoverflow.com/questions/1138612/silverlight-3-navigation/1143730#1143730 0 Answer by Bill Reiss for Silverlight 3 Navigation Bill Reiss 2009-07-17T14:46:52Z 2009-07-17T14:46:52Z <p>You only have one mapping, so you'll only get one page. The default mapper when you create a navigation project looks like this:</p> <pre><code>&lt;navigation:Frame.UriMapper&gt; &lt;uriMapper:UriMapper&gt; &lt;uriMapper:UriMapping Uri="" MappedUri="/Views/Home.xaml"/&gt; &lt;uriMapper:UriMapping Uri="/{pageName}" MappedUri="/Views/{pageName}.xaml"/&gt; &lt;/uriMapper:UriMapper&gt; &lt;/navigation:Frame.UriMapper&gt; </code></pre> <p>The second mapping will look for a view based on the page name specified.</p> http://stackoverflow.com/questions/1133862/converting-int-to-color-in-c-for-silverlights-writeablebitmap/1141215#1141215 0 Answer by Bill Reiss for Converting Int to Color in C# for Silverlight's WriteableBitmap Bill Reiss 2009-07-17T02:36:01Z 2009-07-17T02:36:01Z <p>What hasn't been covered is that WriteableBitmap uses <strong><em>premultiplied</em></strong> ARGB32 so if you have a semitransparent pixel the R, G, and B values are scaled from 0 to the Alpha value. To get the Color value back, you need to do the opposite and scale it back up to 0 to 255. Something like</p> <p>r = (byte)(r * (255d / alpha))</p> http://stackoverflow.com/questions/941685/when-to-use-multiple-sprite-batches-in-xna/942654#942654 0 Answer by Bill Reiss for When to use multiple sprite batches in XNA? Bill Reiss 2009-06-03T01:05:25Z 2009-06-03T01:05:25Z <p>It also may be easier in cases with DrawableGameComponents to have a SpriteBatch per DrawableGameComponent instead of trying to pass this around. </p> http://stackoverflow.com/questions/928204/automatic-scrolling-in-a-silverlight-list-box/928782#928782 2 Answer by Bill Reiss for Automatic Scrolling in a Silverlight List Box Bill Reiss 2009-05-30T02:08:15Z 2009-05-30T02:08:15Z <p>Use the ListBox's ScrollIntoView method passing in the last item. You may need to call UpdateLayout immediately before it for it to work.</p> http://stackoverflow.com/questions/284766/drawingvisual-performance-with-opacity0 1 DrawingVisual performance with Opacity=0 Bill Reiss 2008-11-12T17:59:54Z 2009-05-28T07:03:56Z <p>If I have a DrawingVisual in WPF with Opacity=0, is that enough for it not to be drawn? We have hundreds of DrawingVisuals on a Canvas, and are currently setting Opacity=0 on the visuals that are not to be displayed, and I wanted to make sure there is no rendering performance hit for rendering a DrawingVisual with Opacity=0.</p> <p>UPDATE: I have discovered through testing that there IS overhead when Opacity=0, but since DrawingVisual doesn't have a Visibility property, I don't know how else you would tell it to not be displayed unless you actualy remove it from the visual tree, so any suggestions are welcome. </p> http://stackoverflow.com/questions/875853/xna-applying-spritebatch-draw-color-only-to-non-transparent-pixels/875880#875880 1 Answer by Bill Reiss for XNA: Applying SpriteBatch.Draw(...) color only to non-transparent pixels Bill Reiss 2009-05-18T00:57:44Z 2009-05-18T01:33:17Z <p>I've never seen this happen, and I've been working with transparent PNGs like this since the beginning in XNA. Are you mixing 2D and 3D? If so, your 3D render setting may be confusing SpriteBatch, but I thought SpriteBatch was supposed to set these properly for you. Maybe there's something wrong with the PNG image you're using?</p> http://stackoverflow.com/questions/784023/what-is-the-optimum-resolution-for-a-silverlight-application/785803#785803 0 Answer by Bill Reiss for What is the optimum resolution for a Silverlight Application? Bill Reiss 2009-04-24T13:16:49Z 2009-04-24T13:16:49Z <p>One thing you need to be careful of is that a lot of laptops have a maximum vertical resolution of 800 pixels, and once you add the title bar, toolbars, start menu, status bar, etc. you're actually very easily below 600 pixels for vertical screen space. It can be even worse with netbooks. I've seen too many Silverlight apps that are 600 pixels or more vertically and they get cut off because the div isn't set to the proper height to make the page scroll. </p> http://stackoverflow.com/questions/784847/silverlight-3-hosting/785699#785699 0 Answer by Bill Reiss for Silverlight 3 hosting Bill Reiss 2009-04-24T12:51:59Z 2009-04-24T12:51:59Z <p>"silverlight compatible" I would assume just means that they have the MIME entry in place, and it's mainly marketing.</p> http://stackoverflow.com/questions/711717/xna-2d-game-engines/712038#712038 2 Answer by Bill Reiss for XNA 2D Game Engines Bill Reiss 2009-04-02T23:33:51Z 2009-04-02T23:33:51Z <p>FlatRedBall is a good option and is being actively supported. <a href="http://www.flatredball.com/frb/" rel="nofollow">http://www.flatredball.com/frb/</a></p> http://stackoverflow.com/questions/673504/silverlight-vs-adobe-air/674318#674318 6 Answer by Bill Reiss for Silverlight vs Adobe Air Bill Reiss 2009-03-23T17:15:14Z 2009-03-23T17:15:14Z <p>There are some significant differences right now in the Beta, no idea if these will still be differences in the release version.</p> <ol> <li>There is no way to hide the window chrome in Silverlight OOB.</li> <li>No ability to create a notification tray icon.</li> <li>Air apps can be multi-window, Silverlight OOB cannot.</li> <li>Air apps have more access to the system, Silverlight apps are sandboxed.</li> <li>There are differences in the install and update procedures, not sure of al of the details.</li> </ol> http://stackoverflow.com/questions/652717/silverlight-penetration-rate/652892#652892 0 Answer by Bill Reiss for Silverlight penetration rate Bill Reiss 2009-03-17T03:00:06Z 2009-03-17T03:00:06Z <p>Adoption seems to grow about 2 percent per month, so if this continues you could expect about 40 percent by the end of the year. Hopefully the fact that the NCAA tournament is using Silverlight and then the release of Silverlight 3 hopefully sometime later this year will accelerate that rate.</p> http://stackoverflow.com/questions/569751/controlling-rendering-order-zorder-in-silverlight-without-using-the-canvas-cont/570079#570079 1 Answer by Bill Reiss for Controlling rendering order (ZOrder) in Silverlight without using the Canvas control Bill Reiss 2009-02-20T15:49:46Z 2009-02-20T15:49:46Z <p>You should be able to use Canvas.ZIndex in a Grid, it's actually misnamed and should be Panel.ZIndex but it should work.</p> http://stackoverflow.com/questions/512531/button-rendering-incorrectly-after-rotation-transformation-within-a-silverlight-c/514298#514298 3 Answer by Bill Reiss for Button Rendering Incorrectly after Rotation Transformation within a Silverlight Control Bill Reiss 2009-02-05T02:30:44Z 2009-02-05T02:30:44Z <p>If an element in a vertical StackPanel is wider than the width of the StackPanel, it will be clipped to the width of the StackPanel. If you remove your TransformGroup you'll see you got the same clipping, just not rotated. Clipping occurs before rotation, so even if you make it tall enough to display the result, it will still be clipped because the container before rotation wasn't big enough. One way around this is to insert a Canvas in between, because Canvas elements aren't clipped, and so it should work as expected. The best way to not get other side effects would be to make your Canvas the same size as the elements it contains, otherwise you could get weird sizing behavior from your StackPanel.</p> <p>So your Code would look like this:</p> <pre><code> &lt;StackPanel Width="20"&gt; &lt;Canvas Width="100" Height="20"&gt; &lt;Button Width="100" Content="Foo" &gt; &lt;Button.RenderTransform&gt; &lt;TransformGroup&gt; &lt;ScaleTransform/&gt; &lt;SkewTransform/&gt; &lt;RotateTransform Angle="90"/&gt; &lt;TranslateTransform/&gt; &lt;/TransformGroup&gt; &lt;/Button.RenderTransform&gt; &lt;/Button&gt; &lt;/Canvas&gt; &lt;/StackPanel&gt; </code></pre> http://stackoverflow.com/questions/442751/possibilities-for-full-blown-silverlight-applications/442802#442802 0 Answer by Bill Reiss for Possibilities for full blown silverlight applications Bill Reiss 2009-01-14T12:38:57Z 2009-01-14T12:38:57Z <p>You are limited in fullscreen to certain key presses such as arrow keys, tab, enter, and space so this rules out some of those types of apps. They have done this for security reasons so an app can't hijack the screen and record the keypresses, but I wish they could come up with a scheme to sufficiently warn the user then allow it if they consent.</p> http://stackoverflow.com/questions/434306/will-plug-ins-such-as-flash-silverlight-etc-eventually-replace-xhtml-css-javas/434402#434402 1 Answer by Bill Reiss for Will plug-ins such as Flash, Silverlight, etc. eventually replace XHTML/CSS/Javascript? Bill Reiss 2009-01-12T03:59:36Z 2009-01-12T03:59:36Z <p>My hope is that what comes out of all of this is a new standardized web platform truly suited to building the web applications that people want to see with tools that developers really want to use. I see all of the effort going to trying to shoehorn these legacy web technologies into the "Web 2.0" model and I just wish that this effort could go towards making a truly revolutionary "Web v.Next".</p> <p>Don't get me wrong, I really like what jQuery is doing to make Javascript client code easier, but it's still Javascript and my personal preference is to work with strongly typed languages with productive development tools.</p> <p>In the meantime, I think tools like Silverlight and Flash have a lot to offer and help you do things more easily in some cases than in other web technologies, and there are some things you simply can't do any other way. But I don't think Silverlight or Flash or any other technology is the end game, just a step in the right direction.</p> http://stackoverflow.com/questions/1758337/why-change-from-wpf-to-silverlight-4/1759835#1759835 Comment by Bill Reiss on Why change from WPF to Silverlight 4 Bill Reiss 2009-11-19T14:42:40Z 2009-11-19T14:42:40Z Scott Guthrie in the keynote said that Silverlight 4 isn't much bigger in size, the plug-in is still going to be right around 5MB on Windows. http://stackoverflow.com/questions/1383157/element-silverlight-is-not-a-known-element/1383191#1383191 Comment by Bill Reiss on Element Silverlight is not a known element Bill Reiss 2009-09-05T14:16:26Z 2009-09-05T14:16:26Z I stopped using the ASP.NET control a while ago, it really didn't do a whole lot for you and didn't work with ASP.NET MVC. There's been some talk about open sourcing the ASP.NET control, not sure where that stands right now. http://stackoverflow.com/questions/1372347/why-does-microsoft-not-force-silverlight-onto-users-machines-through-a-windows-up/1373767#1373767 Comment by Bill Reiss on Why does Microsoft not force Silverlight onto users machines through a Windows update? Bill Reiss 2009-09-03T17:21:13Z 2009-09-03T17:21:13Z Guess it means what you mean by &quot;better achieved&quot;. If you mean harder to maintain, with no support for the most popular video formats in use today then you may be right. http://stackoverflow.com/questions/1359236/wpf-3-d-performance-for-head-tracking-app/1367111#1367111 Comment by Bill Reiss on WPF 3-D performance for head-tracking app Bill Reiss 2009-09-02T11:46:34Z 2009-09-02T11:46:34Z There are currently some issues embedding XNA in WPF, it has something to do with conflicting device properties from what I understand. The XNA and WPF folks are aware of the issue but I don't think it's been resolved yet. Using something like SlimDX though shouldn't have the same issues. http://stackoverflow.com/questions/1231484/which-is-the-future-of-web-development-html5-or-silverlightor-other-ria-framewo/1231529#1231529 Comment by Bill Reiss on Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? Bill Reiss 2009-08-05T15:00:54Z 2009-08-05T15:00:54Z 1. What do you consider &quot;notable market share&quot;? According to independent statistics trackers, Silverlight has at least a 30% install base, though not in the 90's like Flash, I think 30% is &quot;notable&quot;. What does IE have to do with it? If you install the Silverlight plugin it's available to all browsers on the system. If you think Silverlight is just Java Applets all over again I don't think you've really looked at it in detail. http://stackoverflow.com/questions/1185948/how-to-change-x-y-origin-of-canvas-to-bottom-left-and-flip-the-y-coordinates/1187866#1187866 Comment by Bill Reiss on How to change x,y origin of canvas to bottom left and flip the y coordinates? Bill Reiss 2009-07-30T15:10:19Z 2009-07-30T15:10:19Z Well I don't see how you can do this with a straight Canvas, if you scale it -1 in the Y everything will be flipped. I guess you could scale all of the elements -1 as well. http://stackoverflow.com/questions/1089380/silverlight-for-the-masses-is-it-time/1089533#1089533 Comment by Bill Reiss on Silverlight for the masses, is it time Bill Reiss 2009-07-07T14:42:09Z 2009-07-07T14:42:09Z The consensus seems to be that MLB moved away from Silverlight because Adobe threw some more money at them or there was some non-technical rift between MLB and Microsoft. http://stackoverflow.com/questions/1051459/silverlight-ininparams/1051881#1051881 Comment by Bill Reiss on Silverlight IninParams Bill Reiss 2009-06-27T02:12:46Z 2009-06-27T02:12:46Z I really prefer the object tag, I always use that, and it works with MVC :) Anything you can do with the Silverlight control you can do with the object tag, take a look at the HTML that the Silverlight object creates to see what to add to the page and Tim has good advice here. http://stackoverflow.com/questions/928204/automatic-scrolling-in-a-silverlight-list-box/928782#928782 Comment by Bill Reiss on Automatic Scrolling in a Silverlight List Box Bill Reiss 2009-06-03T01:04:07Z 2009-06-03T01:04:07Z Call UpdateLayout BEFORE ScrollIntoView, hopefully that will work for you. http://stackoverflow.com/questions/729294/run-silverlight-with-apache-server-under-linux/729313#729313 Comment by Bill Reiss on Run Silverlight with Apache Server (Under linux) Bill Reiss 2009-04-08T18:13:06Z 2009-04-08T18:13:06Z Doubts? Why? It's just like serving up an image from a web server, or a Flash SWF file.