gpt4 book ai didi

xaml - 如何在 XAML 中将 Entry.Text 作为按钮的 CommandParameter 传递?

转载 作者:行者123 更新时间:2023-12-03 16:04:24 27 4
gpt4 key购买 nike

我有一个页面,其唯一目的是让用户在输入框中输入他们的显示名称,然后单击一个按钮,将用户移动到下一页。

            <Grid.RowDefinitions>
<RowDefinition Height="0.10*"/>
<RowDefinition Height="0.20*"/>
<RowDefinition Height="0.15*"/>
<RowDefinition Height="0.40*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label Style="LargeRegularLabel" Text="Enter Your Display Name:"
Grid.Row="1" VerticalOptions="End" HorizontalOptions="Start"/>
<Entry x:Name="DisplayNameEntry" Grid.Row ="2"
Placeholder="Enter Name Here"
Text="{Binding DisplayName, Mode=TwoWay}" />
<Button x:Name="BeginButton" Text="Begin Quiz"
Grid.Row="4"
HorizontalOptions="Center" VerticalOptions="Center"
Command="{StaticResource BeginQuizButtonCommand}" CommandParameter="{Binding Source=DisplayNameEntry, Path=Text}"/>
</Grid>

在上面的 XAML 中,我有这个。
CommandParameter="{Binding Source=DisplayNameEntry,  Path=Text}"

我希望这能让我在单击按钮时从 Entry 框中获取文本并将其作为参数传递给相关的 Command,然后传递给 ViewModel 中的相关方法,以确定它是否是有效名称。

然而,它似乎只是没有传递给命令。当我在命令的 Execute() 方法中放置断点时,我可以看到参数的值为空。

如何使用 XAML 从条目中获取此文本?

最佳答案

您需要获取元素的引用,然后选择属性 Source=DisplayNameEntry只会在 BindingContext 中搜索它。

CommandParameter="{Binding Source={x:Reference DisplayNameEntry}, Path=Text}"

正如@JohnnyQ 提到的,你也可以使用 ElementName .我建议你在 difference between them 上浏览这篇文章

关于xaml - 如何在 XAML 中将 Entry.Text 作为按钮的 CommandParameter 传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52875305/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com