XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

LumaTunnel

【WinUI】LumaTunnel 是一个面向个人多设备的 Windows 代理系统。客户端在本机提供 HTTP/HTTPS CONNECT 与 SOCKS5 TCP 代理,并通过一个受信任 TLS 证书保护的 WSS 会话,将多个 TCP 流复用到自建 Windows Server 节点。

公开
关注 0 Fork 0 Star 0
UTF-8
<Window x:Class="LumaTunnel.Client.Installer.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="安装 LumaTunnel 光隧" Width="620" Height="430" WindowStartupLocation="CenterScreen" ResizeMode="NoResize">
  <Grid Background="#07162F">
    <Grid.ColumnDefinitions><ColumnDefinition Width="220"/><ColumnDefinition Width="*"/></Grid.ColumnDefinitions>
    <Border Background="#0C2851" Padding="34">
      <StackPanel VerticalAlignment="Center">
        <TextBlock Text="L" Foreground="#39E8DA" FontSize="96" FontWeight="Bold" HorizontalAlignment="Center"/>
        <TextBlock Text="LumaTunnel" Foreground="White" FontSize="25" FontWeight="SemiBold" HorizontalAlignment="Center"/>
        <TextBlock Text="光隧" Foreground="#9BEFE8" FontSize="16" HorizontalAlignment="Center"/>
      </StackPanel>
    </Border>
    <Border Grid.Column="1" Background="#F8FAFD" Padding="38">
      <StackPanel VerticalAlignment="Center">
        <TextBlock Text="自托管的安全网络通道" FontSize="24" FontWeight="SemiBold" Foreground="#14213A" Margin="0,0,0,16"/>
        <TextBlock Text="将安装到当前用户的 LocalAppData。无需管理员权限,不会安装根证书。" TextWrapping="Wrap" Foreground="#526078" Margin="0,0,0,16"/>
        <CheckBox x:Name="ShortcutBox" Content="创建桌面快捷方式" IsChecked="True" Foreground="#14213A" Margin="0,0,0,16"/>
        <ProgressBar x:Name="Progress" Height="8" Minimum="0" Maximum="100" Value="0" Margin="0,0,0,16"/>
        <TextBlock x:Name="StatusText" Text="准备安装" Foreground="#526078" Margin="0,0,0,16"/>
        <Button x:Name="InstallButton" Content="安装 LumaTunnel" Height="42" Click="OnInstall" Background="#166BDE" Foreground="White"/>
      </StackPanel>
    </Border>
  </Grid>
</Window>