我有一个用户控件Animator
,用于拍摄图像并为其执行动画。
现在我想使用此Animator
从代码端添加。
如何使用?
一般来说,
<xmlns:local="clr-namespace:MytestApp.Controls">
初始化。
我可以用它作为
<local:Animator ImageSource="Images/image.png" Interval="0:0:0.15" HorizontalOffset="50" x:Name="Loader1" Visibility="Hidden" VerticalOffset="50" Height="42" Width="40" ></local:Animator>
现在我需要从代码端添加它。怎么用呢?
答案 0 :(得分:-1)
var myAnimator = new MytestApp.Controls.Animator()
myGrid.Children.Add(myAnimator);