public SearchPage( ) { InitializeComponent( ); this.Loaded += (s, e) => { this.listBoxHelper = new ListBoxHelper(this.list_Result, false, false, false); this.listBoxHelper.ReloadDelegate += new Action(listBoxHelper_ReloadDelegate); this.iconSearch_Click(null, null); }; this.Unloaded += (s, e) => { this.listBoxHelper.Clear( ); }; }
public SearchPage( ) { InitializeComponent( ); this. Loaded += (s, e) => { this. listBoxHelper = new ListBoxHelper( this. list_Result,false, false, false ); this. listBoxHelper. ReloadDelegate += new Action( listBoxHelper_ReloadDelegate ); this. iconSearch_Click( null, null ); }; this. Unloaded += (s, e) => { this. listBoxHelper. Clear( ); }; }
public WordsPage( ) { InitializeComponent( ); this.Loaded += (s, e) => { this.listBoxHelper = new ListBoxHelper(this.list_Words); this.listBoxHelper.ReloadDelegate += new Action(listBoxHelper_ReloadDelegate); this.listBoxHelper.Refresh( ); }; this.Unloaded += (s, e) => { this.listBoxHelper.Clear( ); }; }
public WordsPage( ) { InitializeComponent( ); this. Loaded += (s, e) => { this. listBoxHelper = new ListBoxHelper( this. list_Words ); this. listBoxHelper. ReloadDelegate += new Action( listBoxHelper_ReloadDelegate ); this. listBoxHelper. Refresh( ); }; this. Unloaded += (s, e) => { this. listBoxHelper. Clear( ); }; }