mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
add scrollviewer (#21310)
This commit is contained in:
@@ -313,29 +313,31 @@
|
|||||||
<ContentDialog.DataContext>
|
<ContentDialog.DataContext>
|
||||||
<models:Entry />
|
<models:Entry />
|
||||||
</ContentDialog.DataContext>
|
</ContentDialog.DataContext>
|
||||||
<StackPanel
|
<ScrollViewer HorizontalScrollMode="Auto" HorizontalScrollBarVisibility="Auto">
|
||||||
MinWidth="480"
|
<StackPanel
|
||||||
Margin="0,12,0,0"
|
MinWidth="480"
|
||||||
HorizontalAlignment="Stretch"
|
Margin="0,12,0,0"
|
||||||
Spacing="24">
|
HorizontalAlignment="Stretch"
|
||||||
<TextBox
|
Spacing="24">
|
||||||
x:Uid="Address"
|
<TextBox
|
||||||
IsSpellCheckEnabled="False"
|
x:Uid="Address"
|
||||||
Text="{Binding Address, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
IsSpellCheckEnabled="False"
|
||||||
<TextBox
|
Text="{Binding Address, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
x:Uid="Hosts"
|
<TextBox
|
||||||
IsSpellCheckEnabled="False"
|
x:Uid="Hosts"
|
||||||
Text="{Binding Hosts, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
IsSpellCheckEnabled="False"
|
||||||
<TextBox
|
Text="{Binding Hosts, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
x:Uid="Comment"
|
<TextBox
|
||||||
IsSpellCheckEnabled="False"
|
x:Uid="Comment"
|
||||||
Text="{Binding Comment, Mode=TwoWay}" />
|
IsSpellCheckEnabled="False"
|
||||||
<ToggleSwitch
|
Text="{Binding Comment, Mode=TwoWay}" />
|
||||||
x:Uid="Active"
|
<ToggleSwitch
|
||||||
IsOn="{Binding Active, Mode=TwoWay}"
|
x:Uid="Active"
|
||||||
OffContent=""
|
IsOn="{Binding Active, Mode=TwoWay}"
|
||||||
OnContent="" />
|
OffContent=""
|
||||||
</StackPanel>
|
OnContent="" />
|
||||||
|
</StackPanel>
|
||||||
|
</ScrollViewer>
|
||||||
</ContentDialog>
|
</ContentDialog>
|
||||||
|
|
||||||
<ContentDialog
|
<ContentDialog
|
||||||
|
|||||||
Reference in New Issue
Block a user