Загрузка данных


<Window x:Class="WpfApp.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Панель инструментов" Height="450" Width="600">
    <StackPanel>
        <!-- Верхняя панель с кнопками управления (горизонтальный StackPanel) -->
        <StackPanel Orientation="Horizontal" Margin="10">
            <Button Content="Открыть" Width="80" Height="30" Margin="5"/>
            <Button Content="Сохранить" Width="80" Height="30" Margin="5"/>
            <Button Content="Выход" Width="80" Height="30" Margin="5"/>
        </StackPanel>
        
        <!-- Разделительная линия для наглядности -->
        <Separator Margin="10,0,10,10"/>
        
        <!-- WrapPanel с цифрами от 1 до 10 -->
        <WrapPanel Margin="10">
            <Button Content="1" Width="60" Height="40" Margin="5"/>
            <Button Content="2" Width="60" Height="40" Margin="5"/>
            <Button Content="3" Width="60" Height="40" Margin="5"/>
            <Button Content="4" Width="60" Height="40" Margin="5"/>
            <Button Content="5" Width="60" Height="40" Margin="5"/>
            <Button Content="6" Width="60" Height="40" Margin="5"/>
            <Button Content="7" Width="60" Height="40" Margin="5"/>
            <Button Content="8" Width="60" Height="40" Margin="5"/>
            <Button Content="9" Width="60" Height="40" Margin="5"/>
            <Button Content="10" Width="60" Height="40" Margin="5"/>
        </WrapPanel>
    </StackPanel>
</Window>