Skip to content

Commit 823ffdc

Browse files
committed
gui: add link to github wiki
1 parent 93f7849 commit 823ffdc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

MainWindow.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<CheckBox x:Name="chkUsePackMagic" Content="PackMagic:" HorizontalAlignment="Left" VerticalAlignment="Top" Foreground="{DynamicResource MainText}" ToolTip="Optional packing adjustment MagicInteger. Increase this value is you have large tiles and notice precision or color issues with packed data"/>
7878
<TextBox x:Name="txtPackMagic" HorizontalAlignment="Left" Margin="0" TextWrapping="Wrap" VerticalAlignment="Top" Width="40" Text="64"/>
7979
</StackPanel>
80-
<CheckBox x:Name="chkCustomIntensityRange" Content="Custom intensity range (0-65535)" HorizontalAlignment="Left" VerticalAlignment="Top" Foreground="{DynamicResource MainText}" ToolTip="Expected default range is 0-255, but often it can be 0-65535"/>
80+
<CheckBox x:Name="chkCustomIntensityRange" Content="Custom intensity range (0-65535)" HorizontalAlignment="Left" VerticalAlignment="Top" Foreground="{DynamicResource MainText}" ToolTip="Expected default range is 0-255, but often it can be 0-65535"/>
8181
</StackPanel>
8282
<Label x:Name="label_Copy9" Content="V2 (.ucpc) &amp; V3 (.pcroot) Options" HorizontalAlignment="Left" Margin="318,167,0,0" VerticalAlignment="Top" Foreground="{DynamicResource MainText}" FontWeight="Bold"/>
8383
<Label x:Name="label_Copy10" Content="V3 (.pcroot) Options" HorizontalAlignment="Left" Margin="623,167,0,0" VerticalAlignment="Top" Foreground="{DynamicResource MainText}" FontWeight="Bold"/>
@@ -100,5 +100,6 @@
100100
<Grid x:Name="gridProcessingPanel" Background="#A3000000" Visibility="Hidden">
101101
<Button x:Name="btnCancel" Content="Stop processing!" HorizontalAlignment="Center" Margin="0" VerticalAlignment="Center" Width="214" Height="58" Click="BtnCancel_Click"/>
102102
</Grid>
103+
<Button x:Name="btnHelp" Content="?" HorizontalAlignment="Right" VerticalAlignment="Top" ToolTip="Open github documentation" Click="btnHelp_Click" Margin="0,5,5,0" Width="16"/>
103104
</Grid>
104105
</Window>

MainWindow.xaml.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,5 +663,9 @@ private void txtInputFile_Drop(object sender, DragEventArgs e)
663663
}
664664
}
665665

666+
private void btnHelp_Click(object sender, RoutedEventArgs e)
667+
{
668+
Process.Start("https://github.com/unitycoder/PointCloudConverter/wiki");
669+
}
666670
} // class
667671
} // namespace

0 commit comments

Comments
 (0)