使用Silverlight 3我正在嘗試重新創建類對象可視化,如Visual Studio的類圖中所示。但是,我的對象將代表數據庫對象而不是類定義。我在以下兩張圖片中看到了部分成功。如何根據其內容自動調整silverlight 3用戶控件的大小?
alt text http://img41.imageshack.us/img41/5669/tablestructurenotexpandb.pnga http://img41.imageshack.us/img41/7634/tablestructurenotexpand.png
這兩個已經固定的尺寸創建的,所以他們不會自動調整的內容,這是正確的。
然而,我想能夠自動調整分別基於行數和列在控制數控制的高度和寬度。我寧願能夠完全聲明地做到這一點。另外,即使我更改字體,我也希望能夠正確自動調整大小。
然而,我不知道我會如何去做這件事。我不確定我是否正在使用或多或少適合自動調整的控件。任何幫助將非常感激。
這是創建此控件的XAML。
<UserControl x:Class="SchemaDesigner.TableBox2"
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"
d:DesignHeight="300" d:DesignWidth="400">
<Border BorderThickness="1" BorderBrush="#FF716F6E" CornerRadius="10" Width="252" Height="202"> <!-- Height="202"-->
<Canvas>
<Canvas.Clip>
<RectangleGeometry RadiusX="10" RadiusY="10" Rect="0,0,250,200"/>
</Canvas.Clip>
<StackPanel Width="250" Background="White">
<StackPanel Width="250" Height="45" Orientation="Vertical">
<StackPanel.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="#FFD3DCEF" Offset="0.0" />
<GradientStop Color="#FFFFFFFF" Offset=" 1.0"/>
</LinearGradientBrush>
</StackPanel.Background>
<StackPanel Width="250" Orientation="Horizontal">
<StackPanel Width="210" Height="45" Orientation="Vertical">
<TextBlock Text="{Binding Name}" Width="190" HorizontalAlignment="Left" FontFamily="Verdana" Margin="10,10,0,0" VerticalAlignment="Top" FontWeight="Black" FontSize="12"/>
<TextBlock Text="{Binding Type}" Width="190" HorizontalAlignment="Left" FontFamily="Verdana" Margin="10,0,0,0" VerticalAlignment="Top" FontStyle="Italic"/>
</StackPanel>
<Button Width="20" Height="20" VerticalAlignment="Top" Margin="10" Content="^" FontFamily="Verdana" />
</StackPanel>
</StackPanel>
<ItemsControl x:Name="items" ItemsSource="{Binding Rows}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Width="250" Orientation="Horizontal">
<Image Width="16" Height="16" VerticalAlignment="Center" Source="/SchemaDesigner;component/column.png"/>
<TextBlock Text="{Binding ColumnName}" Width="100" Height="20"/>
<TextBlock Text="{Binding ColumnType}" Width="130" Height="20"/>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
</Canvas>
</Border>
</UserControl>
感謝安德魯!這使我更接近我需要的東西。它垂直自動調整大小,比我以前的實現更清晰。但是,底部圓角正在丟失。有關如何通過垂直自動調整來保留它們的想法? – 2009-07-01 02:21:11