Ejemplo n.º 1
0
 private void PopulateTargetList()
 {
     if (TargetEndpoint != null)
     {
         lstDestinationFileList.Items.Clear();
         lstDestinationFileList.Items.AddRange(TargetEndpoint.GetList(txtDestinationFilter.Text));
     }
 }
Ejemplo n.º 2
0
 private void PopulateSourceList()
 {
     if (SourceEndpoint != null)
     {
         lstSourceFileList.Items.Clear();
         lstSourceFileList.Items.AddRange(SourceEndpoint.GetList(txtSourceFilter.Text));
     }
 }
Ejemplo n.º 3
0
 private void btnLoadList_Click(object sender, EventArgs e)
 {
     lbFiles.Items.Clear();
     if (Endpoint == null)
     {
         return;
     }
     lbFiles.Items.AddRange(Endpoint.GetList(txtSearchFilter.Text));
 }