Browse Subversion Repository
Contents of /trunk/Somali/Forms/OutlineForm.cs
Parent Directory
| Revision Log
Revision 95 -
( show annotations)
( download)
Sun Nov 28 06:24:47 2010 UTC
(13 years, 5 months ago)
by juan
File size: 1281 byte(s)
mod ExplorerForm with able to open dirTree
| 1 |
using System; |
| 2 |
using System.Collections.Generic; |
| 3 |
using System.ComponentModel; |
| 4 |
using System.Data; |
| 5 |
using System.Drawing; |
| 6 |
using System.Text; |
| 7 |
using System.Windows.Forms; |
| 8 |
using Somali.Base; |
| 9 |
using Somali.Models; |
| 10 |
|
| 11 |
namespace Somali |
| 12 |
{ |
| 13 |
public partial class OutlineForm : WeifenLuo.WinFormsUI.Docking.DockContent, IActionColleague |
| 14 |
{ |
| 15 |
private IActionMediator _mediator; |
| 16 |
public void SetMediator( IActionMediator mediator ) |
| 17 |
{ |
| 18 |
this._mediator = mediator; |
| 19 |
} |
| 20 |
|
| 21 |
public OutlineForm() |
| 22 |
{ |
| 23 |
InitializeComponent(); |
| 24 |
} |
| 25 |
|
| 26 |
public WeifenLuo.WinFormsUI.Docking.DockState DefaultDockState |
| 27 |
{ |
| 28 |
get { return WeifenLuo.WinFormsUI.Docking.DockState.Float; } |
| 29 |
} |
| 30 |
public void Reflesh() { } |
| 31 |
public void Bind( Model model ) |
| 32 |
{ |
| 33 |
OutlineModel exModel; |
| 34 |
if ( model.TryGetModelImpl( out exModel ) ) |
| 35 |
{ |
| 36 |
} |
| 37 |
} |
| 38 |
public void Initialize() { } |
| 39 |
|
| 40 |
private void buttonClose_Click(object sender, EventArgs e) |
| 41 |
{ |
| 42 |
this.Close(); |
| 43 |
} |
| 44 |
|
| 45 |
private void _ButtonJump_Click(object sender, EventArgs e) |
| 46 |
{ |
| 47 |
this.Close(); |
| 48 |
} |
| 49 |
|
| 50 |
} |
| 51 |
} |
|