/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/VS_Snippets_Wpf/FindText/VisualBasic/Window1.xaml
41 строка
1 KB
Andy De George
Move snippets from samples repo to this repo (#17296)
03 мар 2020, 19:23
Не верифицирован
03 мар 2020, 19:23
dbbeda1
Код
Авторство
О чём код?
<Window x:Class="SDKSample.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="FindText Sample Target" Width="640" Height="480" > <Grid> <Grid.RowDefinitions> <RowDefinition Height="22"/> <RowDefinition/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition/> </Grid.ColumnDefinitions> <Menu Grid.Row="0"> <MenuItem> <MenuItem.Header>File</MenuItem.Header> <MenuItem Click="LoadFile"> <MenuItem.Header>Load</MenuItem.Header> </MenuItem> <MenuItem Click="SaveFile"> <MenuItem.Header>Save As...</MenuItem.Header> </MenuItem> <MenuItem Click="Clear"> <MenuItem.Header>Clear Content</MenuItem.Header> </MenuItem> <MenuItem Click="Exit"> <MenuItem.Header>Exit</MenuItem.Header> </MenuItem> </MenuItem> </Menu> <FlowDocumentReader Name="FlowDocRdr" Grid.Row="1" /> </Grid> </Window>