Drinks before Movies
In an attempt to introduce people to other people, I'll be in the Filmhouse bar from 10pm tomorrow. If you're coming to Fear and Loathing in Las Vegas at 11pm then please feel free to turn up at 10 and have a drink.
[Designer(typeof(SnaplineControlDesigner))]
public partial class MyUserControl1 : UserControl
{
public MyUserControl1()
{
InitializeComponent();
}
}
public class SnaplineControlDesigner : ControlDesigner
{
public override IList SnapLines
{
get
{
Control control = this.Component as Control;
ArrayList snapLines = base.SnapLines as ArrayList;
snapLines.Add(
new SnapLine(SnapLineType.Baseline, control.Height - 4, SnapLinePriority.Medium));
return snapLines;
}
}
}