Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compile and minor fixes #352

Merged
merged 1 commit into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/DCSFlightpanels/DCSFlightpanels.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</Authors>
<PackageId>DCSFlightpanels (DCSFP)</PackageId>
<Version>1.0.0</Version>
<AssemblyVersion>4.6.8597.1</AssemblyVersion>
<AssemblyVersion>4.6.8599.1</AssemblyVersion>
<FileVersion>
</FileVersion>
<ApplicationIcon>flightpanels02_8Rc_icon.ico</ApplicationIcon>
Expand Down
Binary file added Source/DCSFlightpanels/Images/YAK52_GMK.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
<Button Name="ButtonGetIdentify" Content="Identify" HorizontalAlignment="Left" VerticalAlignment="Top" Width="76" Canvas.Left="430" Canvas.Top="12" Click="ButtonGetIdentify_OnClick"/>
<Button Name="ButtonGetId" Content="ID" HorizontalAlignment="Left" VerticalAlignment="Top" Width="76" Canvas.Left="520" Canvas.Top="12" Click="ButtonGetId_OnClick"/>
</Canvas>
<GroupBox Header="Selector Knobs" Name="GroupUpperSelectorKnob" FontSize="14" FontWeight="Bold" Grid.Column="0" Grid.Row="1" Grid.RowSpan="3" Grid.ColumnSpan="3" >
<GroupBox Header="Selector Knobs" Name="GroupUpperSelectorKnob" FontSize="14" FontWeight="Bold" Grid.Column="0" Grid.Row="1" Grid.RowSpan="4" Grid.ColumnSpan="3" >
<StackPanel >
<TextBlock FontSize="10" FontWeight="Bold">
<TextBlock FontSize="9" FontWeight="Bold">
COM 1 VHF = <LineBreak/>
<TextBlock Margin="15,0,0,0">
Large Dial : Mhz Dial
Expand All @@ -80,7 +80,20 @@
<LineBreak/>
</TextBlock>
</TextBlock>
<TextBlock FontSize="10" FontWeight="Bold">
<TextBlock FontSize="9" FontWeight="Bold">
NAV 1 : GMK-1A = <LineBreak/>
<TextBlock Margin="15,0,0,0">
Large Dial : Heading/Course Selector Switch
<LineBreak/>
Small Dial : Latitude Selector Knob
<LineBreak/>
ACT/STBY + Large Dial : Hemisphere Selector Switch
<LineBreak/>
ACT/STBY + Small Dial : Mode Switch
<LineBreak/>
</TextBlock>
</TextBlock>
<TextBlock FontSize="9" FontWeight="Bold">
ADF : FRONT ADF = <LineBreak/>
<TextBlock Margin="15,0,0,0">
Large Dial : Volume
Expand All @@ -89,7 +102,7 @@
<LineBreak/>
</TextBlock>
</TextBlock>
<TextBlock FontSize="10" FontWeight="Bold">
<TextBlock FontSize="9" FontWeight="Bold">
DME : REAR ADF = <LineBreak/>
<TextBlock Margin="15,0,0,0">
Large Dial : Volume
Expand All @@ -101,7 +114,7 @@
</StackPanel>
</GroupBox>

<GroupBox Header="Settings" FontSize="10" FontWeight="Bold" Grid.Column="0" Grid.Row="4" Grid.ColumnSpan="3" Grid.RowSpan="2" >
<GroupBox Header="Settings" FontSize="10" FontWeight="Bold" Grid.Column="0" Grid.Row="5" Grid.ColumnSpan="3" Grid.RowSpan="2" >
<StackPanel >
<Label Content="Frequency Knobs sensitivity"></Label>
<ComboBox Name="ComboBoxFreqKnobSensitivity" Width="100" HorizontalAlignment="Left" Margin="5,5,0,0" SelectedIndex="0" SelectedValuePath="Content" IsReadOnly="True" SelectionChanged="ComboBoxFreqKnobSensitivity_OnSelectionChanged">
Expand Down Expand Up @@ -129,7 +142,9 @@

<StackPanel Grid.Column="3" Grid.Row="1" Grid.ColumnSpan="3" Grid.RowSpan="6">
<Label Content="Radio" FontWeight="Bold"/>
<Image Height="300" Source="/dcsfp;component/Images/YAK52_VHF.jpg" />
<Image Height="200" Source="/dcsfp;component/Images/YAK52_VHF.jpg" />
<Label Content="GMK-1А" FontWeight="Bold"/>
<Image Height="200" Source="/dcsfp;component/Images/YAK52_GMK.jpg" />
</StackPanel>
<StackPanel Grid.Column="6" Grid.Row="0" Grid.ColumnSpan="1" Grid.RowSpan="5">
<Label Name="LabelAirframe" Content="Yak-52" FontSize="30" FontWeight="Bold" Grid.Column="4" Grid.Row="0"/>
Expand Down
Loading