/ Published in: XML
Expand |
Embed | Plain Text
<Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="279" Width="613" Loaded="Window_Loaded" > <Window.Resources> </Window.Resources> <StackPanel > <ScrollBar x:Name="Sb1" Minimum="18" Maximum="170" Width="{Binding RelativeSource={RelativeSource self},Path=Value}" Height="240" Canvas.Top="44" Canvas.Bottom="181" > </ScrollBar> <TextBox Height="35" Text="{Binding ElementName=Sb1, Path=Value, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" Width="182" Canvas.Top="294" Canvas.Bottom="100" /> </StackPanel> </Window>
You need to login to post a comment.
