| 1234567891011121314151617181920212223242526 |
- <UserControl x:Class="Plugins.Vm.Views.VmWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:vmctl="clr-namespace:VMControls.WPF.Release;assembly=VMControls.WPF.Release">
- <Border Background="{DynamicResource RegionBrush}" BorderBrush="{DynamicResource BorderBrush}"
- BorderThickness="1" CornerRadius="4" Margin="2">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!-- 标题栏 + 状态圆点 -->
- <Grid Grid.Row="0" Margin="8,4">
- <TextBlock x:Name="CaptionText" Text="画面" FontSize="13" FontWeight="Bold"
- Foreground="{DynamicResource PrimaryTextBrush}" VerticalAlignment="Center"/>
- <Ellipse x:Name="StatusDot" Width="12" Height="12" HorizontalAlignment="Right"
- VerticalAlignment="Center" Visibility="Collapsed" Fill="#888888"/>
- </Grid>
- <Border Grid.Row="1" Background="Black" ClipToBounds="True">
- <vmctl:VmRenderControl x:Name="Render"/>
- </Border>
- </Grid>
- </Border>
- </UserControl>
|