Category

Computers & Programming

Computers & Programming

Double Ball Lift

I redesigned the ball lift to have two lifting arms. The ball holding “claws” will intertwine to allow the ball to be picked out of the lower arm by the upper arm. This video shows one of the variations of the lift that I designed. I’m making small…

Continue reading
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