16 lines
345 B
C#
16 lines
345 B
C#
|
using System.Windows;
|
|||
|
|
|||
|
namespace WPF基础;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for MainWindow.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class MainWindow : Window
|
|||
|
{
|
|||
|
public MainWindow()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
MessageBox.Show(string.Format($"这个Grid的宽高是:{Grid.ActualWidth}和{Grid.ActualHeight}"));
|
|||
|
}
|
|||
|
}
|