0

我想从 c# 中的另一个类中绘制一个矩形到我的 mainWindow

<Window x:Class="MyApp.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Name="mainWindow" Height="768" Width="1366" >
</Window>

这是我的类代码片段,我试图在 mainWindow 中绘制一个矩形

private UIElement container;

private Rect rect1 = new Rect();

public TestPage(UIElement cont) 
{        
    this.container = cont;
}

private void init()
{
    this.container.Children.Add(rect1);
}

如何处理?

4

1 回答 1

1

一个窗口只能有一个内容,因此您必须设置Content窗口的属性。

于 2012-08-14T10:57:23.297 回答