/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.Management.UI.Internal/ShowCommand/Controls/ParameterSetControl.xaml
22 строки
1 KB
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
<!--================================================================= // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. ==================================================================--> <UserControl x:Class="Microsoft.PowerShell.Commands.ShowCommandInternal.ParameterSetControl" 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:sc="clr-namespace:Microsoft.PowerShell.Commands.ShowCommandInternal" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> <ScrollViewer Name="scrollViewerParameter" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" AutomationProperties.Name="{Binding RelativeSource={RelativeSource AncestorType={x:Type sc:ParameterSetControl}}, Path=Tag}"> <Grid x:Name="MainGrid"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"></ColumnDefinition> <ColumnDefinition Width="*"></ColumnDefinition> </Grid.ColumnDefinitions> </Grid> </ScrollViewer> </UserControl>