Board Gaming

Games we own. These are all available for game night with the North Tahoe Tabletop Board Game Meetup group....

Art Projects

I have worked on various art projects over the years. This is a collection of some of those projects....

Programming Projects

I have worked on various personal and professional computer programming projects over the years. This is a collection of...
Computers & Programming

Visual Bug in ScrollViewer XAML

The Windows Store ScrollViewer XAML has a bug. It causes a visual error on the screen when the ScrollViewer has no scroll bars. I discovered this because I have a main page in my app that uses the Visual Studio provided framework for a tiled app. The main…

Continue reading
Computers & Programming

Move WinRT Popup When OSK Appears

I have a Windows Store app written in C# that has some popups. These are Popup objects that work like modal dialog boxes. Mine are displayed as a band across the middle of the screen. The standard built-in on-screen keyboard (OSK) handling does not alter the position of…

Continue reading
Computers & Programming

OnNavigatedTo Too Soon To Add Grid Children

In the process of porting my Windows Phone code to Windows 8 (Store App), I came across this interesting problem. FrameworkElement FieldView = Field.getView( true ); ContentPanel.Children.Add( FieldView ); Panel theParent = VisualTreeHelper.GetParent(FieldView) as Panel; FrameworkElement theotherparent = (FrameworkElement)FieldView.Parent; When I call this code in the OnNavigatedTo event…

Continue reading
Computers & Programming

Alpha Color Mixer

I just finished writing a small Windows Store app. It is a color mixing program that stands out because it includes an Alpha channel control. I downloaded someone else’s color mixer and was sadly disappointed. Their user interface had multiple preview boxes, and changing a setting in one…

Continue reading
Computers & Programming

Windows 8 Store App Theme Color

When developing for Windows Phone 7 and 8, the operating system API provides access to lots of interesting features. One feature lets the application get the selected theme color that the user has selected. This is not available to Windows Store apps because, well because the notion of…

Continue reading