forked from LoCyan-Team/LoCyanFrpCSDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
19d95ff
commit 9455edd
Showing
16 changed files
with
240 additions
and
33 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes.
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,50 @@ | ||
<ui:UiWindow x:Class="Kairo.Components.ProxyCreator" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" | ||
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" | ||
xmlns:local="clr-namespace:Kairo.Components" | ||
mc:Ignorable="d" | ||
Title="创建新隧道" Height="300" Width="200" | ||
Style="{StaticResource UiWindow}" | ||
ResizeMode="NoResize" | ||
> | ||
<Grid > | ||
<Border | ||
Margin="10" | ||
Padding="10,5" | ||
Background="{DynamicResource ControlFillColorDefaultBrush}" | ||
CornerRadius="8"> | ||
<Grid Opacity="0"> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="*"/> | ||
<ColumnDefinition Width="*"/> | ||
</Grid.ColumnDefinitions> | ||
<Grid Grid.Column="0"> | ||
<StackPanel> | ||
<TextBlock Grid.Row="0">隧道名字</TextBlock> | ||
<ui:TextBox></ui:TextBox> | ||
</StackPanel> | ||
</Grid> | ||
<Grid Grid.Column="1"> | ||
<StackPanel> | ||
<TextBlock Grid.Row="0">隧道类型</TextBlock> | ||
<ListView Grid.Row="1" FontSize="12" Height="20" SelectedItem="0" HorizontalAlignment="Stretch"> | ||
<ListViewItem>TCP</ListViewItem> | ||
<ListViewItem>UDP</ListViewItem> | ||
<ListViewItem>HTTP</ListViewItem> | ||
<ListViewItem>HTTPS</ListViewItem> | ||
</ListView> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
|
||
|
||
|
||
|
||
</Grid> | ||
</Border> | ||
</Grid> | ||
</ui:UiWindow> |
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,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Shapes; | ||
using Wpf.Ui.Controls; | ||
|
||
namespace Kairo.Components | ||
{ | ||
/// <summary> | ||
/// Interaction logic for ProxyCreator.xaml | ||
/// </summary> | ||
public partial class ProxyCreator : UiWindow | ||
{ | ||
public ProxyCreator() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.