/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/VisualStudioDiagnosticsToolWindow/Panels/TelemetryPanel.xaml
26 строк
1 KB
Tomáš Matoušek
Fix Roslyn Diagnostic Window and add Workspace panel (#59035)
29 янв 2022, 02:34
Не верифицирован
29 янв 2022, 02:34
7f51127
Код
Авторство
О чём код?
<UserControl x:Class="Roslyn.VisualStudio.DiagnosticsWindow.TelemetryPanel" 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" mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <ScrollViewer Grid.Row="0" VerticalScrollBarVisibility="Visible" > <StackPanel Orientation="Vertical" > <ProgressBar x:Name="GenerationProgresBar" IsIndeterminate="False" /> <TextBox x:Name="Result" IsReadOnly="True" TextWrapping="Wrap" /> </StackPanel> </ScrollViewer> <StackPanel Grid.Row="1" Orientation="Horizontal"> <Label Content="Telemetry Info" /> <Button Content="Dump" x:Name="DumpButton" Click="OnDump"/> <Label Content="Copy To Clipboard" /> <Button Content="Copy" x:Name="CopyButton" Click="OnCopy"/> </StackPanel> </Grid> </UserControl>