Skip to content

Commit

Permalink
Update UserControl1.xaml.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
z3ke1r authored Feb 4, 2019
1 parent abd6f23 commit ddfc349
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions DataPAL.Pro/UserControl1.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private void PlacesCard_MouseDown(object sender, MouseButtonEventArgs e)

UserControl2 ucControl2 = new UserControl2();
ucControl2.LayerList.Items.Clear();
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\Epcnas\gis\DataPal\Layers\Boundaries", "*.lyr");
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\nas\gis\DataPal\Layers\Boundaries", "*.lyr");
MainWindow win = (MainWindow)Window.GetWindow(this);
win.ContentControl.Content = ucControl2;
}
Expand All @@ -56,7 +56,7 @@ public void ImageryCard_MouseDown(object sender, MouseButtonEventArgs e)
{
UserControl2 ucControl2 = new UserControl2();
ucControl2.LayerList.Items.Clear();
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\Epcnas\gis\DataPal\Layers\Imagery", "*.lyr");
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\nas\gis\DataPal\Layers\Imagery", "*.lyr");
MainWindow win = (MainWindow)Window.GetWindow(this);
win.ContentControl.Content = ucControl2;
}
Expand All @@ -66,7 +66,7 @@ private void HydroCard_MouseDown(object sender, MouseButtonEventArgs e)

UserControl2 ucControl2 = new UserControl2();
ucControl2.LayerList.Items.Clear();
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\Epcnas\gis\DataPal\Layers\Water", "*.lyr");
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\nas\gis\DataPal\Layers\Water", "*.lyr");
MainWindow win = (MainWindow)Window.GetWindow(this);
win.ContentControl.Content = ucControl2;

Expand All @@ -76,7 +76,7 @@ private void UtilCard_MouseDown(object sender, MouseButtonEventArgs e)
{
UserControl2 ucControl2 = new UserControl2();
ucControl2.LayerList.Items.Clear();
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\Epcnas\gis\DataPal\Layers\Transportation", "*.lyr");
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\nas\gis\DataPal\Layers\Transportation", "*.lyr");
MainWindow win = (MainWindow)Window.GetWindow(this);
win.ContentControl.Content = ucControl2;
}
Expand All @@ -85,7 +85,7 @@ private void EnvCard_MouseDown(object sender, MouseButtonEventArgs e)
{
UserControl2 ucControl2 = new UserControl2();
ucControl2.LayerList.Items.Clear();
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\Epcnas\gis\DataPal\Layers\HabitatEnvironment", "*.lyr");
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\nas\gis\DataPal\Layers\HabitatEnvironment", "*.lyr");
MainWindow win = (MainWindow)Window.GetWindow(this);
win.ContentControl.Content = ucControl2;
}
Expand All @@ -94,7 +94,7 @@ private void AuthCard_MouseDown(object sender, MouseButtonEventArgs e)
{
UserControl2 ucControl2 = new UserControl2();
ucControl2.LayerList.Items.Clear();
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\Epcnas\gis\DataPal\Layers\EPC_Authoritative", "*.lyr");
ucControl2.PopulatecheckedListBox1(ucControl2.LayerList, @"\\nas\gis\DataPal\Layers\EPC_Authoritative", "*.lyr");
MainWindow win = (MainWindow)Window.GetWindow(this);
win.ContentControl.Content = ucControl2;
}
Expand Down

0 comments on commit ddfc349

Please sign in to comment.