24 lines
1.4 KiB
Text
24 lines
1.4 KiB
Text
|
<UserControl x:Class="SafeExamBrowser.UserInterface.Classic.Controls.ApplicationButton"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic.Controls"
|
||
|
xmlns:s="clr-namespace:System;assembly=mscorlib"
|
||
|
mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="50">
|
||
|
<Grid>
|
||
|
<Popup x:Name="InstancePopup" IsOpen="False" Placement="Top" PlacementTarget="{Binding ElementName=Button}">
|
||
|
<ScrollViewer x:Name="InstanceScrollViewer" VerticalScrollBarVisibility="Auto">
|
||
|
<ScrollViewer.Resources>
|
||
|
<s:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}">5</s:Double>
|
||
|
</ScrollViewer.Resources>
|
||
|
<StackPanel x:Name="InstanceStackPanel" />
|
||
|
</ScrollViewer>
|
||
|
</Popup>
|
||
|
<Button x:Name="Button" Click="Button_Click" Padding="5" Width="50" />
|
||
|
<Grid Panel.ZIndex="10">
|
||
|
<Rectangle x:Name="ActiveBar" Height="2" Width="40" VerticalAlignment="Bottom" Fill="LightSteelBlue" Visibility="Collapsed" />
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</UserControl>
|