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


<Window x:Class="ГенераторПароля.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Генератор пароля" Height="300" Width="500">
    <Grid Margin="10">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>

        <StackPanel Grid.Row="0" Orientation="Horizontal" Margin="0,5">
            <Label Content="Введите длину пароля"/>
            <Slider x:Name="sl" Minimum="1" Maximum="32" Width="150"
                    ValueChanged="Slider_ValueChanged"/>
            <TextBox x:Name="tb2" Width="50" Margin="5,0"
                     TextChanged="tb2_TextChanged"/>
        </StackPanel>

        <TextBox x:Name="tb1" Grid.Row="1" Height="30" Margin="0,5"
                 Text="Здесь будет ваш пароль!" IsReadOnly="True"/>

        <StackPanel Grid.Row="2" Margin="0,5">
            <RadioButton x:Name="rb1" Content="Цифры"/>
            <RadioButton x:Name="rb2" Content="Цифры и буквы"/>
            <RadioButton x:Name="rb3" Content="Цифры, буквы и символы"/>
        </StackPanel>

        <Button Grid.Row="3" Content="Button" Width="80"
                Click="Button_Click" Margin="0,5"/>
    </Grid>
</Window>