-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
507 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<Window xmlns="https://github.com/avaloniaui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
Width="500" Height="550" | ||
x:Class="SenhaixFreqWriter.Views.Plugin.SatelliteHelperWindow" | ||
xmlns:vm="using:SenhaixFreqWriter.Views.Plugin" | ||
x:DataType="vm:SatelliteHelperWindow" | ||
Title="打星助手"> | ||
<Canvas> | ||
<Label Content="搜索:" Margin="20"></Label> | ||
<TextBox Canvas.Top="15" Canvas.Left="70" Width="100" TextChanged="SearchTextBox_OnTextChanged"></TextBox> | ||
|
||
<Label Content="选择一个卫星:" Canvas.Left="20" Canvas.Top="60"></Label> | ||
<ListBox Name="satListBox" ItemsSource="{Binding namelist}" Height="330" | ||
Width="150" Canvas.Top="100" Canvas.Left="20" | ||
SelectionChanged="SatListBox_OnSelectionChanged"/> | ||
|
||
<Label Content="卫星详情:" Canvas.Left="220" Canvas.Top="60"></Label> | ||
<TextBox Width="250" Height="130" IsReadOnly="True" | ||
Canvas.Top="100" Canvas.Left="220" Name="selectedSatelliteInfo"></TextBox> | ||
|
||
<Label Content="选择模式:" Canvas.Left="220" Canvas.Top="240"></Label> | ||
<ListBox Name="modeListBox" ItemsSource="" Height="160" | ||
Width="250" Canvas.Top="270" Canvas.Left="220" | ||
SelectionChanged="ModeListBox_OnSelectionChanged"/> | ||
|
||
<Border Width="260" Height="95" BorderBrush="Black" BorderThickness="1" | ||
Canvas.Top="440" Canvas.Left="10"></Border> | ||
<CheckBox Canvas.Top="470" Canvas.Left="20" IsChecked="True" Name="doppler"></CheckBox> | ||
<Label Content="多普勒" Canvas.Top="475" Canvas.Left="40"></Label> | ||
|
||
<Label Content="U段±" Canvas.Top="450" Canvas.Left="100"></Label> | ||
<TextBox Canvas.Top="445" Canvas.Left="145" Name="uoffset" Text="10"></TextBox> | ||
<Label Content="kHz" Canvas.Top="450" Canvas.Left="220"></Label> | ||
|
||
<Label Content="V段±" Canvas.Top="500" Canvas.Left="100"></Label> | ||
<TextBox Canvas.Top="495" Canvas.Left="145" Name="voffset" Text="5"></TextBox> | ||
<Label Content="kHz" Canvas.Top="500" Canvas.Left="220"></Label> | ||
|
||
<Button HorizontalAlignment="Left" Canvas.Top="440" Canvas.Left="350" Name="FetchSat" Click="FetchSatDataButton_OnClick"> | ||
<StackPanel Orientation="Horizontal"> | ||
<PathIcon Data="{StaticResource arrow_sync_regular}" Margin="0,0,10,0" /> | ||
<TextBlock Text="更新星历" VerticalAlignment="Center" Name="FetchSatText"/> | ||
</StackPanel> | ||
</Button> | ||
|
||
<Button HorizontalAlignment="Left" Canvas.Top="500" Canvas.Left="350" Click="InsertChannelButton_OnClick" Name="insertChannel" IsEnabled="False"> | ||
<StackPanel Orientation="Horizontal"> | ||
<PathIcon Data="{StaticResource channel_regular}" Margin="0,0,10,0" /> | ||
<TextBlock Text="插入信道" VerticalAlignment="Center" /> | ||
</StackPanel> | ||
</Button> | ||
</Canvas> | ||
</Window> |
Oops, something went wrong.