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"/>
<Button Style="{StaticResource TabButton}"
x:Name="STAGING"
x:Name="TEST"
Click="ButtonClicked"
Margin="5"
Content="STAGING"
Content="TEST"
FontSize="18"
FontWeight="DemiBold"
Background="#FFFF00"
Background="#8080FF"
Grid.Row="2"/>
</Grid>
</GroupBox>
+2 -2
View File
@@ -35,8 +35,8 @@ namespace wpf_ax_utility
case "LIVE":
AxArgs = @"-regConfig=L:\Link\PAL_LIVE_USR.axc";
break;
case "STAGING":
AxArgs = @"-regConfig=L:\Link\PAL_STAGING_USR.axc";
case "TEST":
AxArgs = @"-regConfig=L:\Link\PAL_TEST_USR.axc";
break; ;
}