根据内容调整网格大小

时间:2014-12-10 06:39:02

标签: c# wpf grid-layout

如何定义网格大小以便根据wpf中的TextBlock内容增加和减少?

1 个答案:

答案 0 :(得分:0)

嘿,以下代码段将SizeToContent设置为WidthAndHeight。

    <Window x:Class="WindowSample.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF Window Sample"
    Width="300" Height="200" Left="500" Top="500"
    SizeToContent="WidthAndHeight" >