/
githubmirror
/
shadowsocks-windows
Обзор
Документация
Войти
/
githubmirror
/
shadowsocks-windows
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4
shadowsocks-csharp/Views/VersionUpdatePromptView.xaml
43 строки
2 KB
database64128
🎂 ForwardProxyView + HotkeysView + OnlineConfigView + VersionUpdatePromptView
17 окт 2020, 20:13
Не верифицирован
17 окт 2020, 20:13
d376002
Код
Авторство
О чём код?
<reactiveui:ReactiveUserControl x:Class="Shadowsocks.Views.VersionUpdatePromptView" x:TypeArguments="vms:VersionUpdatePromptViewModel" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:Shadowsocks.Views" xmlns:vms="clr-namespace:Shadowsocks.ViewModels" xmlns:reactiveui="http://reactiveui.net" xmlns:mdxam="clr-namespace:MdXaml;assembly=MdXaml" xmlns:lex="http://wpflocalizeextension.codeplex.com" lex:LocalizeDictionary.DesignCulture="en" lex:ResxLocalizationProvider.DefaultAssembly="Shadowsocks" lex:ResxLocalizationProvider.DefaultDictionary="Strings" mc:Ignorable="d" d:DesignHeight="480" d:DesignWidth="640"> <Grid Margin="8"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <TextBlock Margin="8 8 8 4" Grid.Row="0" FontSize="16" Text="{lex:Loc updatePromptTitle}" /> <TextBlock Margin="8 4 8 8" Grid.Row="1" Text="{lex:Loc updatePromptBody}" /> <mdxam:MarkdownScrollViewer x:Name="releaseNotesMarkdownScrollViewer" Margin="8" Grid.Row="2" Markdown="{Binding ReleaseNotes}" MarkdownStyle="{x:Static mdxam:MarkdownStyle.GithubLike}"/> <StackPanel Orientation="Horizontal" Grid.Row="3"> <Button x:Name="updateButton" Margin="8 8 4 4" Width="75" Height="23" Content="{lex:Loc}"/> </StackPanel> <StackPanel Orientation="Horizontal" Grid.Row="3" HorizontalAlignment="Right"> <Button x:Name="skipVersionButton" Margin="4 8 4 4" Width="75" Height="23" Content="{lex:Loc}"/> <Button x:Name="notNowButton" Margin="4 8 8 4" Width="75" Height="23" Content="{lex:Loc}"/> </StackPanel> </Grid> </reactiveui:ReactiveUserControl>