Scottish Blogs.com


Breaking The API via Davy Mitchell's Weblog March 11th, 2007 at 14:29

Well, at least changing it.... TayLayout is still Alpha so perhaps I shouldn't worry so much. The first change would be to shorten methods so that for example: self.colpick2 = self.ALayout.addColorPicker("Background 2", Color.LightBlue, True, 300) self.ALayout.addSpace(False) self.borderoption = self.ALayout.addCheckBox("Draw Border around picture", True, 250)Would become: self.colpick2 = self.ALayout.ColorPicker("Background 2", Color.LightBlue, True, 300) self.ALayout.Space(False) self.borderoption = self.ALayout.CheckBox("Draw Border around picture", True, 250)The second disruptive change would be to make the default when adding a control NOT to start a new row. ... (114 words)Python IronPython Software IronPython DotNet GUI Layout TayLayout...

Hello World - TayLayout Tutorial via Davy Mitchell's Weblog February 13th, 2007 at 12:50

This tutorial shows how to use TayLayout, starting with Hello World. Tutorial1-1.py import clr clr.AddReference('System.Windows.Forms') clr.AddReference('System.Drawing') from taylayout import * class MainForm(Form): def __init__(self): Form.__init__(self) # STEP 1 - Create Layout. ... (334 words)Python IronPython taylayout...

TayLayout 00.00.16 via Davy Mitchell's Weblog February 12th, 2007 at 22:30

This is a small release of TayLayout with a few new handy classes. LDForm, LDPrompt and LDDialog provide a few more helpers and the main layout code has an important tweak. ... (162 words)IronPython Python...

The Return of The Davy Blog via Davy Mitchell's Weblog February 5th, 2007 at 13:25

Varous boring reasons have kept me not blogging of late. The only one worth mentioning is that the domain is no longer latedecember.com but latedecember**.co.uk**. ... (168 words)Internet IronPython Podcast Python MoodNews Software...

Fast WinForms with TayLayout via Davy Mitchell's Weblog December 21st, 2006 at 12:24

Spend 2 minutes on this blog and you will realise I have been having fun mucking around with WinForms and IronPython. It is nice writing GUI's in pure code and no resource files or form editor to play with but you often have to write a fair few lines of code. ... (328 words)Python IronPython...

Creating An EXE with IronPython via Davy Mitchell's Weblog December 19th, 2006 at 21:42

IronPython has a few useful samples up on the Codeplex site - today I got the chance to look at them. The most interesting one is PYC which shows how to create DLL's, Console and Windows applications with a single call to the script. ... (122 words)Python IronPython CodePlex dotnet...

Picture Joiner 2 - Ponies! via Davy Mitchell's Weblog December 17th, 2006 at 22:30

Here's an example output image from Picture Joiner. ... (8 words)IronPython Python graphictool graphic tool christmas winforms...