.NET CF VS2008でsplitterをデザイン画面ではなく、コードで追加する方法(Windows compact framewrok)

追加したいsplitterの名前をsplitter3とし、分割線をくっつけたいオブジェクトをtreeview1とします。
まず、xxx.Designer.csを開き、最終行辺りに一行追加
private System.Windows.Forms.Splitter splitter3;
上の方のnew生成している最後あたりに一行追加
this.splitter3 = new System.Windows.Forms.Splitter();
treeview1をControlsにAddしている部分をみつけ、その直前の行に追加。
xxxx.Controls.Add(this.splitter3);
xxxx.Controls.Add(this.treeView1);
treeview1の位置やサイズを定義している箇所の前にsplitter3の定義を付け加える(DockStyle.Leftの場合)
this.splitter3.Location = new System.Drawing.Point(treeview1の幅に合わせる, 0);
this.splitter3.Name = "splitter3";
this.splitter3.Size = new System.Drawing.Size(3ぐらいの太さ, treeview1の高さと同じ);
......
this.treeView1.Size = new System.Drawing.Size(129, 248);
......
位置、サイズは、DocStyleに応じて調整する。