User George Sealy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:50:07Zhttp://stackoverflow.com/feeds/user/10086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1719131/silverlight-how-to-programmatically-select-items-in-a-data-bound-listbox0Silverlight - how to programmatically select items in a data bound ListBox?George Sealy2009-11-12T00:45:10Z2009-11-12T01:38:15Z
<p>Hi all,</p>
<p>I have a ListBox (AvailableDevicesListBox), which is populated using data-binding in Silverlight 3. The binding is to a collection of objects of type <em>DeviceDTO</em>. It is set up to allow multiple selections, and this all works fine.</p>
<p>However, I'm trying to get a 'Select All' button working, and if I iterate through the AvailableDevicesListBox.Items collection, I'm returned <em>DeviceDTO</em> objects, not ListBoxItem objects, so I have no way of selecting / deselecting the items in the list box that I want.</p>
<p>Can anyone offer any suggestions?</p>
http://stackoverflow.com/questions/1604979/possible-issues-with-upgrading-to-snow-leopard-xcode-3-20Possible issues with upgrading to Snow Leopard / XCode 3.2?George Sealy2009-10-22T04:11:05Z2009-10-22T21:06:44Z
<p>Hi all,</p>
<p>I'm one of a pair of programmers working together on iPhone / iPod applications. I'd like to upgrade to the new version of XCode (3.2) and Snow Leopard, but chances are my partner won't. Can anyone highlight any problems we might have sharing code? Are there incompatibilities between the old and new, or should we be able to share code / projects happily?</p>
<p>Any help / warnings would be appreciated.</p>
http://stackoverflow.com/questions/1540672/how-to-find-the-dates-shown-in-a-silverlight-calendar-control0How to find the dates shown in a Silverlight Calendar control?George Sealy2009-10-08T21:44:32Z2009-10-13T21:38:01Z
<p>Hi all,</p>
<p>I have a Silverlight application that contains a calendar control. I'm wanting to 'black out' days for which we have no data available, using the BlackoutDates property.</p>
<p>So I'm looking for a simple way to find all the dates that are currently visible (assuming a Month view, for now). I can use a brute force method, say taking the first day of the month minus seven days to the last day of the month plus seven days, but can anyone suggest a cleaner method?</p>
http://stackoverflow.com/questions/1556957/scrolling-in-open-gl-es/1557726#15577260Answer by George Sealy for Scrolling in Open GL ESGeorge Sealy2009-10-13T00:51:46Z2009-10-13T00:51:46Z<p>Scrolling itself is just done by moving your camera position. Are you using a call like gluLookAt()? It's not a built in function, but it is in regular OpenGL. A quick Google will turn up a sample implementation. </p>
<p>Assuming you are doing this, you need to figure out where / when your camera is moving. You'll need to handle touches from the user, track any movement and apply a similar movement to your camera's position. I can't give a more specific answer without knowing more about how you are setting up your camera, is it a perspective or orthographic projection etc.</p>
http://stackoverflow.com/questions/1557666/xunit-testing-framework-for-mac-iphone/1557676#15576761Answer by George Sealy for xUnit Testing Framework for Mac/iPhoneGeorge Sealy2009-10-13T00:36:18Z2009-10-13T00:36:18Z<p>UnitTest++ is a very light weight, but powerful unit testing framework that I like a lot. It's site is: <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">http://unittest-cpp.sourceforge.net/</a>. </p>
<p>I've written a blog article about integrating it into an iPhone development environment, for more information you can see here: <a href="http://acornheroes.com/?p=152" rel="nofollow">http://acornheroes.com/?p=152</a> </p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1501207/silverlight-application-requesting-a-file-from-a-wcf-service1Silverlight application requesting a file from a WCF serviceGeorge Sealy2009-09-30T23:33:46Z2009-10-01T05:26:42Z
<p>I have a Silverlight (v3) application that is communicating to a WCF service on my server. One of the things the Silverlight application does is request a dynamically generated data file - this data file is created by the service and needs to (ultimately) be saved on the local user's machine via the SaveFileDialog.</p>
<p>My question is, what is the best way in Silverlight to get this file? The file in question may be quite large.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/1204241/suggestions-for-building-silverlight-and-wpf-applications-with-common-code0Suggestions for building Silverlight and WPF applications with common code.George Sealy2009-07-30T03:06:00Z2009-07-30T03:12:36Z
<p>I'm building a set of assemblies that need to work on both Silverlight and WPF. Up till now, I've been using log4net to handle logging. It's not compatible with Silverlight though, so now I'm facing the prospect of ripping it out, which I don't want to do. </p>
<p>My question is this. Assuming I recreate the assemblies as Silverlight assemblies, I could wrap (using #ifdef or similar) the logging calls. However, is there any way to 'conditionally' reference the log4net dll? I'm reluctant to give up log4net, and would rather not have to have two versions of every project.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/419128/exposing-an-imagesource-property-in-a-usercontrol-for-use-in-blend0Exposing an ImageSource property in a UserControl for use in BlendGeorge Sealy2009-01-07T03:47:34Z2009-07-26T17:38:11Z
<p>I have a user control that exposes a property of type ImageSource. I want to expose this property in Blend so that I can edit it in Blend, rather than specifying the image in code.</p>
<p>Based on what I've Googled, I've added a dependency property, and specified appropriate attributes to expose the property in Blend.</p>
<p>I can see it there, and edit it (as a text field). What I want to do is have a drop down list of available image resources, and a browse button for loading up another image. In other words I want it to behave like the 'Source' property of the 'Image' control.</p>
<p><em>edit</em> Just as an aside, I've noticed that exposing Alignment or Margin properties behaves as expected, it just seems to be Images that don't work. I'm really stuck on this one and would appreciate help!</p>
<p>My current code looks like:</p>
<pre><code>public static readonly DependencyProperty ImageSourceProperty =
DependencyProperty.Register("ImageSource", typeof(ImageSource), typeof(SmartButton));
[Category("Appearance")]
[Bindable(true)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public ImageSource ImageSource
{
get { return (ImageSource)GetValue(ImageSourceProperty); }
set
{
SetValue(ImageSourceProperty, value);
this.BackgroundImage.Source = value;
}
}
</code></pre>
http://stackoverflow.com/questions/1084928/what-is-a-good-textbook-for-a-game-development-course5What is a good textbook for a Game Development course?George Sealy2009-07-05T22:10:01Z2009-07-05T22:19:30Z
<p>Hi all,</p>
<p>I'll be teaching a tertiary level game development course over this coming summer. I'm looking for suggestions for a textbook. The course is aimed at 3rd-4th year students, most of whom are Computer Science students. While there is a reasonably strong programming requirement, the course looks at all aspects of the industry - design, marketing, art, coding, production and so on.</p>
<p>Any suggestions would be welcomed.</p>
http://stackoverflow.com/questions/237218/silverlight-2-and-large-canvases1Silverlight 2 and large canvases?George Sealy2008-10-25T23:51:39Z2009-06-14T17:19:56Z
<p>Hi all,</p>
<p>I am working on an application that uses several large canvas controls (several thousand pixels across), layered on top of each other. The canvas controls themselves are completely invisible, but each contains a number of controls, mainly images.</p>
<p>My question is, is there a recommended maximum size for a canvas, or is it purely a memory issue? And also, are we better off setting the Canvas size to (0, 0) and making use of the fact that we can happily render controls outside of the bounds of the canvas?</p>
<p>Thanks,</p>
<p>G</p>
http://stackoverflow.com/questions/978741/handling-multiple-calls-to-beginexecutenonquery-in-sql-server-2008/978762#9787620Answer by George Sealy for Handling multiple calls to BeginExecuteNonQuery in SQL Server 2008George Sealy2009-06-11T00:25:08Z2009-06-11T00:26:52Z<p>Thanks Alex - so you'd suggest a hybrid method then, assuming that I'll still need to buffer updates if all connections are in use?</p>
<p>(I'm the original poster, I've just managed to get two accounts without realizing)</p>
http://stackoverflow.com/questions/490294/changing-the-style-of-a-combo-box-in-wpf-in-blend-preferably1Changing the style of a Combo-Box in WPF (in Blend preferably)George Sealy2009-01-29T02:24:41Z2009-05-14T21:40:42Z
<p>I'm having some issues trying to change the look / style of a combo box in Expression Blend / WPF. While there are tutorials out there describing setting styles for buttons, there seem to be a few wrinkles with ComboBox controls.</p>
<p>Can anyone offer any advice, or point me towards good tutorials that cover re-styling something more complex than a button?</p>
http://stackoverflow.com/questions/505087/minimum-spec-laptop-for-iphone-development1Minimum spec laptop for iPhone development?George Sealy2009-02-02T21:44:08Z2009-02-03T07:05:31Z
<p>Hi all,</p>
<p>I'm looking into iPhone development. Most likely I'd be working on the move, so need a laptop to develop on. What would be the minimum spec laptop I could use to develop for the iPhone? Most likely the development would include OpenGL work.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/500404/what-programming-language-would-be-best-for-creating-a-roguelike-game/501594#5015940Answer by George Sealy for What programming language would be best for creating a roguelike game?George Sealy2009-02-01T21:17:01Z2009-02-01T21:17:01Z<p>You could consider Silverlight. </p>
<p>It sits on top of C# and .Net so theres not much need to worry about memory management. With SL you'll get built in support for scene graph type rendering - culling of things not on screen, Key board, mouse events, clicks on objects etc. </p>
<p>There's an initial learning curve, but I find it's a great environment to work in.</p>
http://stackoverflow.com/questions/497543/silverlight-force-canvas-to-invalidate-or-repaint-itself/501551#5015511Answer by George Sealy for Silverlight: Force Canvas to Invalidate or Repaint itself?George Sealy2009-02-01T20:52:37Z2009-02-01T20:52:37Z<p>It's a bit grubby, but you could try changing the visibility to 'Visible' (even though it already is) of the Canvas, so:</p>
<pre><code>myCanvas.Visibility = Visibility.Visible;
</code></pre>
<p>We've found that this forces as redraw, even if the actual value of myCanvas.Visible hasn't changed... </p>
<p>Give it a go, it's only a one liner that may fix things. Although I would expect the Canvas to be redrawing anyway if you're removing things from it.</p>
http://stackoverflow.com/questions/488984/best-articles-about-organizing-code-files-in-c/489008#4890083Answer by George Sealy for best articles about organizing code files in CGeorge Sealy2009-01-28T19:37:05Z2009-01-28T19:37:05Z<p>A good book that covers a lot of this (for both C and C++) is <a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow">Large Scale C++ Software Design, by John Lakos</a>:</p>
<p>Also, a good rule of thumb to remember is "Never do anything that allocates memory in a header file"</p>
http://stackoverflow.com/questions/481025/where-property-setting-value-stored-in-c-windows-application/481044#4810444Answer by George Sealy for where property.setting value stored in c# windows applicationGeorge Sealy2009-01-26T19:38:00Z2009-01-26T19:38:00Z<p>If you're talking about .Net settings, then they will normally be in a .config (xml) file in the same directory as the application. When you save them, however, a local copy gets saved in to a user writable folder (typically C:\Users\username\AppData\Local under Vista). Under XP, look in the Documents and Settings folder.</p>
<p>The .Net application uses this file in preference to the 'default' one in the application directory.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/297390/getting-png-pixel-data-in-silverlight1Getting .png pixel data in SilverlightGeorge Sealy2008-11-17T23:47:39Z2009-01-24T16:45:32Z
<p>Hi all,</p>
<p>We have a Silverlight application that needs to load a number of .png files. We can load the images OK, but Silverlight doesn't support reading the pixel data from the Image class.</p>
<p>Can anyone suggest a simple solution for getting at this data? Our current best bet would be a third party .png loading library, but we are having trouble finding a suitable one.</p>
http://stackoverflow.com/questions/466631/handling-events-from-the-business-layer-in-xaml-wpf/466675#4666751Answer by George Sealy for Handling Events from the Business Layer in XAML WPFGeorge Sealy2009-01-21T19:38:47Z2009-01-21T19:38:47Z<p>The simple answer is I don't believe it's possible. There are no doubt things you can do with data binding and the like, but then you're getting beyond the kind of thing you want a designer to be doing.</p>
<p>A couple of options:</p>
<ol>
<li><p>Teach the designer the bare minimum of coding an event handler and calling a storyboard. With intellisense and the nice interaction between Blend / Visual Studio you could have someone up and running fairly quickly.</p></li>
<li><p>Have them create storyboard animations for any of the 'minor UI tweaks' you require, and then you can hook these up to the event and change your label text with only 3-5 lines of code.</p></li>
</ol>
http://stackoverflow.com/questions/445082/move-two-wpf-windows-at-once-solved/445277#4452771Answer by George Sealy for Move two WPF windows at once? [solved]George Sealy2009-01-15T00:57:35Z2009-01-15T00:57:35Z<p>You can use the window's Left and Top properties to place the secondary window. Here's a rough bit of code as an example:</p>
<p>In the MainWindow code:</p>
<pre><code> mDebugWindow.Left = this.Left + this.ActualWidth;
mDebugWindow.Top = this.Top;
</code></pre>
<p>In this case mDebugWindow is my child window. This code tells it to sit on the right hand side of the main window, with the tops of the windows aligned.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/436806/add-a-line-to-a-list-and-canvas/437641#4376410Answer by George Sealy for Add a line to a list and canvasGeorge Sealy2009-01-13T00:59:49Z2009-01-13T00:59:49Z<p>I think Micah is on the right track - except the most properties on the Line you need to set are X1, Y1, X2, Y2 - namely the coordinates of each end of the line. If this doesn't work, I'd suggest setting the Fill property as well. </p>
<p>I don't think adding the line to your own object is the problem here.</p>
http://stackoverflow.com/questions/385141/applying-a-single-style-to-multiple-controls-and-tweaking-each-style1Applying a single style to multiple controls (and tweaking each style)George Sealy2008-12-21T23:10:35Z2008-12-22T17:36:40Z
<p>Hi all,</p>
<p>I have a WPF application that is using a custom style. In it I have a set of buttons that each have a custom background image. For each button, I'm supplying a normal and a mouse down image. Is there a simple way to do this with a single style (and customize each button on a case by case basis)? </p>
<p>Currently I'm creating a new style for each button, and that can't be the best way to do this surely?</p>
http://stackoverflow.com/questions/272199/why-am-i-missing-assemblies-from-the-bin-directory-when-compiling-with-msbuild/303407#3034071Answer by George Sealy for Why am I missing assemblies from the bin directory when compiling with MsBuild?George Sealy2008-11-19T21:22:43Z2008-11-19T21:22:43Z<p>I have found various references to this problem scattered around the Net - and I've just come across it myself. Apparently MSBuild on the command line isn't as good at tracing chains of dependencies as the IDE is.</p>
<p>So as I understand it, if A depends on B which depends on C, The command line may not realize that A depends on C. </p>
<p>The only solution I've found is to ensure that you manually set the project dependencies so that the ASP project references everything it depends on - don't expect it to be able to figure them all out on the command line. This has worked for me, although I only have 5 projects so it's not a bind to get going.</p>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/297390/getting-png-pixel-data-in-silverlight/300110#3001100Answer by George Sealy for Getting .png pixel data in SilverlightGeorge Sealy2008-11-18T20:56:10Z2008-11-18T20:56:10Z<p>Thanks - I've seen the Joe Stegman blog. It's very handy, but the decoder he doesn't have is a PNG one. We're using PNGs as we need transparency. The fluxtools link seems to be broken too.</p>
<p>I'm still looking (unsuccessfully) for a PNG decoder I can drop into Silverlight.</p>
http://stackoverflow.com/questions/276947/updating-a-tooltip-in-silverlight-20Updating a tooltip in Silverlight 2George Sealy2008-11-10T02:46:52Z2008-11-10T03:19:06Z
<p>I have a control in Silverlight 2 that changes state during the application. When its state changes, I want to update the tooltip that goes with it.</p>
<p>I'm using the ToolTipService:</p>
<pre><code>ToolTipService.SetToolTip(ent.LayoutRoot, "FooBar");
</code></pre>
<p>which works fine the first time I set a tooltip, but fails the second time time around I get:</p>
<p><code>"Object reference not set to an instance of an object"</code> from somewhere inside Silverlight where I can't get a useful stack trace / break point.</p>
<p>Trawling the net pops up a few similar problems but no solutions.</p>
<p>Can anyone shed some light on this? </p>
http://stackoverflow.com/questions/276947/updating-a-tooltip-in-silverlight-2/276991#2769910Answer by George Sealy for Updating a tooltip in Silverlight 2George Sealy2008-11-10T03:19:06Z2008-11-10T03:19:06Z<p>Found the problem - it looks like you can't set a ToolTip after the control is created. So now, I set the ToolTip in the controls constructor, then when it needs updating, the call to SetToolTop() works just fine.</p>
http://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys/238885#2388850Answer by George Sealy for silverlight keydown event doesn't fire for arrow keysGeorge Sealy2008-10-27T01:05:35Z2008-10-27T01:05:35Z<p>This is a possible answer - I haven't had a chance to test this. I've had similar trouble in the past though, when a control is consuming the events before you can get at them. There's a few things you may be able to try:</p>
<ol>
<li>Use the PreviewKeyDown event, I think that's what it's called. It may let you get at the event before it's consumed by the control.</li>
<li>Try mblandfo's suggestion, although if you do this you probably ant to wrap the whole thing up in a user control to hide what you're doing from the rest of your code.</li>
<li>Add a key handler to the Canvas object, you may be able to catch the event there, and "bubble" it up through your own event.</li>
</ol>
<p>Except for 1) all of these count as hacks, really, but good luck, I hope one of them works for you!</p>
http://stackoverflow.com/questions/135299/sprite-character-animation-in-silverlight-v22Sprite / Character animation in Silverlight (v2)George Sealy2008-09-25T19:05:43Z2008-10-17T15:43:52Z
<p>We have a Silverlight 2 project (game) that will require a lot of character animation. Can anyone suggest a good way to do this. Currently we plan to build the art in Illustrator, imported to Silverlight via Mike Snow's plug-in as this matches the skills our artists have.</p>
<p>Is key framing the animations our only option here? And if it is, what's the best way to do it? Hundreds of individual png's or is there some way in Silverlight to draw just a portion of a larger image?</p>
http://stackoverflow.com/questions/500404/what-programming-language-would-be-best-for-creating-a-roguelike-game/501594#501594Comment by George Sealy on What programming language would be best for creating a roguelike game?George Sealy2009-11-26T01:51:11Z2009-11-26T01:51:11ZFor Silverlight development in general, or Roguelike in particular?http://stackoverflow.com/questions/1719131/silverlight-how-to-programmatically-select-items-in-a-data-bound-listboxComment by George Sealy on Silverlight - how to programmatically select items in a data bound ListBox?George Sealy2009-11-12T01:52:00Z2009-11-12T01:52:00ZThanks for the answers guys - I'd seen that SelectedItems was readonly, without realising I could then use Add(). Works beautifully now, thanks!http://stackoverflow.com/questions/1604979/possible-issues-with-upgrading-to-snow-leopard-xcode-3-2/1605106#1605106Comment by George Sealy on Possible issues with upgrading to Snow Leopard / XCode 3.2?George Sealy2009-10-22T06:00:36Z2009-10-22T06:00:36ZThanks Mike. Both you and Mark make good points. I'll proceed with caution :)http://stackoverflow.com/questions/1604979/possible-issues-with-upgrading-to-snow-leopard-xcode-3-2Comment by George Sealy on Possible issues with upgrading to Snow Leopard / XCode 3.2?George Sealy2009-10-22T04:23:52Z2009-10-22T04:23:52ZUnfortunately it's not that simple. Finances and time required to update are also factors.http://stackoverflow.com/questions/1084928/what-is-a-good-textbook-for-a-game-development-course/1084936#1084936Comment by George Sealy on What is a good textbook for a Game Development course?George Sealy2009-07-27T08:25:23Z2009-07-27T08:25:23ZAnd now that it's here, I can thoroughly recommend it. The chapter on prototyping is worth getting the book for on its own. Definitely a good buy.http://stackoverflow.com/questions/1084928/what-is-a-good-textbook-for-a-game-development-courseComment by George Sealy on What is a good textbook for a Game Development course?George Sealy2009-07-07T10:20:48Z2009-07-07T10:20:48ZNew Zealand, but close enough for most Americans :)http://stackoverflow.com/questions/1084928/what-is-a-good-textbook-for-a-game-development-course/1084936#1084936Comment by George Sealy on What is a good textbook for a Game Development course?George Sealy2009-07-06T01:43:06Z2009-07-06T01:43:06ZThanks for the feedback. The Art of Game Design has duly been ordered, it looks great!