0

我在 Expression Design 中创建了一个图像,我试图将其导入 Blend 以创建一个按钮。当我在 Blend 中调整它的大小时,我试图用它的容器(很可能是一个网格)来缩放按钮。不幸的是,这两种产品的文档都不是很有帮助。设计中的 xaml 如下所示:

<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Name="Document" Width="61" Height="61" Clip="F1 M 0,0L 61,0L 61,61L 0,61L 0,0">
<Canvas x:Name="MinimizeButtonBase" Width="799.999" Height="600" Canvas.Left="0" Canvas.Top="0">
    <Viewbox x:Name="Group" Width="61" Height="61" Canvas.Left="0" Canvas.Top="0">
        <Canvas Width="61" Height="61">
            <Path x:Name="Path" Width="61" Height="61" Canvas.Left="0" Canvas.Top="3.05176e-005" Stretch="Fill" StrokeLineJoin="Round" Stroke="#B0000000" Data="F1 M 5.5,0.500031L 55.5,0.500031C 58.2614,0.500031 60.5,2.73859 60.5,5.5L 60.5,55.5C 60.5,58.2614 58.2614,60.5 55.5,60.5L 5.5,60.5C 2.73859,60.5 0.5,58.2614 0.5,55.5L 0.5,5.5C 0.5,2.73859 2.73859,0.500031 5.5,0.500031 Z ">
                <Path.Fill>
                    <LinearGradientBrush StartPoint="0.561118,0.955553" EndPoint="0.58334,-0.177781">
                        <LinearGradientBrush.GradientStops>
                            <GradientStop Color="#B0000000" Offset="0"/>
                            <GradientStop Color="#B0FFFFFF" Offset="1"/>
                        </LinearGradientBrush.GradientStops>
                    </LinearGradientBrush>
                </Path.Fill>
            </Path>
            <Path x:Name="Line" Width="49.2547" Height="5" Canvas.Left="5.23578" Canvas.Top="47" Stretch="Fill" StrokeThickness="5" StrokeLineJoin="Round" Stroke="#B0000000" Data="M 7.73578,49.5L 51.9904,49.5"/>
        </Canvas>
    </Viewbox>
</Canvas>

有谁知道在设计中导入简单的 2 路径图像以使其成为混合按钮的步骤?当我将以下 xaml 添加到混合中的资源文件时,在将其转换为控件后调整大小时,我无法让按钮缩放到它的容器。

4

2 回答 2

0

问题出在您使用的容器类型和它产生的 XAML 的复杂性上,画布是绝对定位,不应该真正用于缩放。为了解决这个问题,您可以使用一个视图框来模拟比例,但这不是必需的。

我已经在 Expression 3 中启动了一个项目并添加了一个用户控件,将您的代码粘贴到那里,然后对其进行处理。下方水平路径相对于按钮底部的位置不清楚,如果需要更改它的位置和宽度,请适当更改网格列的高度和宽度值,并将它们保持为比率而不是绝对数字.

<UserControl
    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"
    mc:Ignorable="d"
    x:Class="WpfApplication1.UserControl1"
    x:Name="UserControl">

    <Grid x:Name="Document">
         <Grid.ColumnDefinitions>
             <ColumnDefinition Width="1*"/>
             <ColumnDefinition Width="8*"/>
             <ColumnDefinition Width="1*"/>
         </Grid.ColumnDefinitions>
         <Grid.RowDefinitions>
             <RowDefinition Height="8*"/>
             <RowDefinition Height="1*"/>
             <RowDefinition Height="1*"/>
         </Grid.RowDefinitions>
         <Path Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" Grid.RowSpan="3"
               x:Name="Path" 
               Stretch="Fill" StrokeLineJoin="Round" Stroke="#B0000000" 
               Data="F1 M 5.5,0.500031L 55.5,0.500031C 58.2614,0.500031 60.5,2.73859 60.5,5.5L 60.5,55.5C 60.5,58.2614 58.2614,60.5 55.5,60.5L 5.5,60.5C 2.73859,60.5 0.5,58.2614 0.5,55.5L 0.5,5.5C 0.5,2.73859 2.73859,0.500031 5.5,0.500031 Z "> 
             <Path.Fill>                           
                 <LinearGradientBrush StartPoint="0.561118,0.955553" EndPoint="0.58334,-0.177781">         
                     <LinearGradientBrush.GradientStops> 
                         <GradientStop Color="#B0000000" Offset="0"/>                        
                         <GradientStop Color="#B0FFFFFF" Offset="1"/>     
                     </LinearGradientBrush.GradientStops> 
                 </LinearGradientBrush>                    
            </Path.Fill>                     
       </Path>     
       <Path x:Name="Line" Stretch="Fill"
             StrokeThickness="5" StrokeLineJoin="Round" Stroke="#B0000000" 
             Data="M 7.73578,49.5L 51.9904,49.5" 
             Grid.Row="1" Grid.Column="1" Grid.RowSpan="2" />
    </Grid>
</UserControl>

如果它要成为一个适当的控件,那么您将不得不开始以一种或另一种形式添加内容表示,但这应该可以解决您的调整大小问题。

编辑:我已经删除了一些我设置的额外对齐和边距,因为它们不再需要了。

于 2009-11-22T01:43:20.830 回答
0

使事物可扩展的最简单的布局容器是 ViewBox。它是 WPF 中的标准控件,在 Silverlight 中(我认为)它位于 SL 工具箱中。

于 2009-11-27T20:51:49.147 回答