Changed Staging to Test on default user view

This commit is contained in:
PAL\cbo
2022-03-25 16:52:37 +01:00
parent 093ed17270
commit 621a053a11
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -80,13 +80,13 @@
Background="LightGray"/> Background="LightGray"/>
<Button Style="{StaticResource TabButton}" <Button Style="{StaticResource TabButton}"
x:Name="STAGING" x:Name="TEST"
Click="ButtonClicked" Click="ButtonClicked"
Margin="5" Margin="5"
Content="STAGING" Content="TEST"
FontSize="18" FontSize="18"
FontWeight="DemiBold" FontWeight="DemiBold"
Background="#FFFF00" Background="#8080FF"
Grid.Row="2"/> Grid.Row="2"/>
</Grid> </Grid>
</GroupBox> </GroupBox>
+2 -2
View File
@@ -35,8 +35,8 @@ namespace wpf_ax_utility
case "LIVE": case "LIVE":
AxArgs = @"-regConfig=L:\Link\PAL_LIVE_USR.axc"; AxArgs = @"-regConfig=L:\Link\PAL_LIVE_USR.axc";
break; break;
case "STAGING": case "TEST":
AxArgs = @"-regConfig=L:\Link\PAL_STAGING_USR.axc"; AxArgs = @"-regConfig=L:\Link\PAL_TEST_USR.axc";
break; ; break; ;
} }