Category

Computers & Programming

Linkage Program

Actual Size Printing in Linkage 2.9.15

While designing the lift mechanism for the new rolling ball sculpture, I found myself using a paint program and a lot of manual work to get printed plans with a 1:1 scale factor. In other words, I wanted printouts that were the actual size of the mechanism. This…

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