我在文本框上应用 rendertransform,我想在 TransformGroup 对象中添加一个 TransformGroup 对象。为此,我在 xaml 中做的有点像这样。
<TextBox.RenderTransform>
<TransformGroup>
<MatrixTransform x:Name="previousTransform" />
<TransformGroup x:Name="currentTransform">
<ScaleTransform x:Name="scaleTransform" />
<RotateTransform x:Name="rotateTransform" />
<TranslateTransform x:Name="translateTransform" />
</TransformGroup>
</TransformGroup>
</TextBox.RenderTransform>
它按我预期的方式工作,现在我希望在 c# 中发生同样的事情,我创建了一个 TransformGroup 对象并设法向它添加转换。现在我想将此转换组添加到另一个转换组对象,就像我在 xaml 中所做的那样,但是我不知道该怎么做。请就我将用来实现它的属性或方法提出建议。
谢谢。