我想得到一个孩子在净毛伊C#。
代码看起来像这样:
XAML:
<Border>
<Border.GestureRecognizers>
<TapGestureRecognizer
Command="{Binding FollowClickedCommand}"
CommandParameter="."/>
</Border.GestureRecognizers>
<Label Text="Follow" Margin="10,0"/>
</Border>
字符串
C#:
[RelayCommand]
async void FollowClicked(Border callerObject)
{
}
型
我想做的事情是在C#中获取一个调用者子级,在本例中是一个Label。
1条答案
按热度按时间dffbzjpn1#
字符串