Skip to content

Commit

Permalink
Fixed help page hyperlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
Asnivor committed Oct 3, 2016
1 parent a3a8e87 commit 2fcb5a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 31 deletions.
34 changes: 6 additions & 28 deletions MedLaunch/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2589,49 +2589,27 @@

</ToolBar>
<WrapPanel Grid.Column="1" Grid.Row="0">
<Button VerticalAlignment="Center" HorizontalAlignment="Right" x:Name="btnWbMedLaunch" Click="btnWbMedLaunch_Click">MedLaunch Homepage</Button>
<Separator />
<Button VerticalAlignment="Center" HorizontalAlignment="Right" x:Name="btnWbMednafenHome" Click="btnWbMednafenHome_Click">Mednafen Homepage</Button>
<Separator />
<Button VerticalAlignment="Center" HorizontalAlignment="Right" x:Name="btnWbMednafenDoc" Click="btnWbMednafenDoc_Click">Mednafen Documentation</Button>
<Separator />
<Button VerticalAlignment="Center" HorizontalAlignment="Right" x:Name="btnWbMednafenForum" Click="btnWbMednafenForum_Click">Mednafen Forums</Button>
<Separator />
<Button VerticalAlignment="Center" HorizontalAlignment="Right" x:Name="btnWbMedLaunch" Click="btnWbMedLaunch_Click">MedLaunch Homepage</Button>
<Separator />

</WrapPanel>
<WebBrowser Name="wb" Navigating="wb_Navigating" Margin="0,0,0,10" Grid.Row="1" Grid.ColumnSpan="2"></WebBrowser>
</Grid>

</DockPanel>
</TabItem>


<!--
<TabItem Header="About">
<!--
<Grid>
<Grid.Resources>
<Image x:Key="MedLogo" Source="/Data/Graphics/medicon.png" Opacity="0.2" />
<VisualBrush x:Key="MedBrush" Visual="{StaticResource MedLogo}"/>
</Grid.Resources>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<WrapPanel Background="{StaticResource MedBrush}">
<TextBlock>
test
</TextBlock>
</WrapPanel>
</Grid>
-->
</TabItem>
-->
</TabControl>

</Grid>
Expand Down
2 changes: 1 addition & 1 deletion MedLaunch/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private void btnWbMednafenForum_Click(object sender, RoutedEventArgs e)

private void btnWbMedLaunch_Click(object sender, RoutedEventArgs e)
{
wb.Navigate("http://asnitech.co.uk");
wb.Navigate("http://medlaunch.asnitech.co.uk/");
}

private void btnWbMednafenHome_Click(object sender, RoutedEventArgs e)
Expand Down
4 changes: 2 additions & 2 deletions MedLaunch/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.11.0")]
[assembly: AssemblyFileVersion("0.1.11.0")]
[assembly: AssemblyVersion("0.1.12.0")]
[assembly: AssemblyFileVersion("0.1.12.0")]

0 comments on commit 2fcb5a7

Please sign in to comment.