找传奇、传世资源到传世资源站!

设置控件的相对布局位置不变

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

在背景图上写控件时,控制所写控件的相对布局不变,WPF 控件的相对布局启动:from clipboard
未按等比例设置的放大效果,可以看出我们事先绘制的红色框线已经偏离原先在内的Buttonfrom clipboard
按等比例缩放效果:from clipboard
可以看出,等比例缩放效果,是一直红色框线和Butong的位置保持相对不变未按等比例缩放<Window x:Class="WpfApp1.Window3"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp1"
        mc:Ignorable="d"
        Title="Window3" Height="350" Width="560" WindowStyle="None" ResizeMode="NoResize">
    <Grid>
        <Grid.Background>
            <ImageBrush ImageSource="bg.png"/>
        </Grid.Background>
        <Button Content="Button" HorizontalAlignment="Left" Margin="402,249,0,0" VerticalAlignment="Top" Width="62" RenderTransformOrigin="0.471,0.289" Height="24"/>
        <Button Content="最大化" Click="Button_Click" HorizontalAlignment="Left" Margin="87,142,0,0" VerticalAlignment="Top" Width="75"/>
        <Button Content="等比例缩放窗口" Click="Button_Click_1" HorizontalAlignment="Left" Margin="87,221,0,0" VerticalAlignment="Top" Width="104" Height="29"/>

    </Grid>
</Window>
等比例缩放:<Window x:Class="WpfApp1.Window4"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp1"
        mc:Ignorable="d"
        Title="Window3" Height="350" Width="560" WindowStyle="None" ResizeMode="NoResize">
    <Grid>
        <Grid.Background>
            <ImageBrush ImageSource="bg.png"/>
        </Grid.Background>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="450*"></ColumnDefinition>
            <ColumnDefinition Width="80*"></ColumnDefinition>
            <ColumnDefinition Width="100*"></ColumnDefinition>
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="760*"></RowDefinition>
            <RowDefinition Height="100*"></RowDefinition>
            <RowDefinition Height="230*"></RowDefinition>
        </Grid.RowDefinitions>
        <Button Content="Button" Grid.Column="1" Grid.Row="1" Margin="5"/>
        <Button Content="最大化" Click="Button_Click" HorizontalAlignment="Left" Margin="87,142,0,0" VerticalAlignment="Top" Width="75"/>

    </Grid>
</Window>

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复