例如我正在使用这种技术:
XAML
<Button x:Name="playButton" Content="Play with rabbit" With="20" Height="20"/>
MainPage.xaml.cs中
public Button _PlayButton
{
get { return playButton; }
}
PlayerControl.cs
//received instance of MainPage class to "_mainPage"
public Button Play
{
_mainPage._PlayButton.Content = "Who care about this text?";
//play logic
}
我正在寻找最好的做法。 在哪里可以深入了解这个范围?
答案 0 :(得分:2)
没有最好的做法。这一切都取决于您的要求。我在各个地方用过类似任务的方法: