- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 C# 和 .NET Frameowork 4.5.1 开发 Windows 8.1 商店应用。
我正在尝试将 PasswordBox
作为参数传递给按钮 Command
。我已经在 WPF 上测试了以下代码并且它有效。
MainViewModel
类:
public class MainViewModel : ViewModelBase
{
private RelayCommand<PasswordBox> doLoginCommand;
/// <summary>
/// The <see cref="UserName" /> property's name.
/// </summary>
public const string UserNamePropertyName = "UserName";
private string _userName = string.Empty;
/// <summary>
/// Sets and gets the UserName property.
/// Changes to that property's value raise the PropertyChanged event.
/// </summary>
public string UserName
{
get
{
return _userName;
}
set
{
Set(UserNamePropertyName, ref _userName, value);
}
}
/// <summary>
///
/// </summary>
public RelayCommand<PasswordBox> DoLoginCommand
{
get { return doLoginCommand; }
}
/// <summary>
/// Initializes a new instance of the MainViewModel class.
/// </summary>
public MainViewModel()
{
////if (IsInDesignMode)
////{
//// // Code runs in Blend --> create design time data.
////}
////else
////{
//// // Code runs "for real"
////}
this.doLoginCommand = new RelayCommand<PasswordBox>((pb) => ExecuteDoLogin(pb), (pb) => CanDoLogin(pb));
//this.doLoginCommand = new RelayCommand<PasswordBox>((pb) => ExecuteDoLogin(pb));
}
private void ExecuteDoLogin(object parameter)
{
PasswordBox passwordBox = parameter as PasswordBox;
Debug.WriteLine(_userName);
Debug.WriteLine(passwordBox.Password);
}
private bool CanDoLogin(object parameter)
{
Debug.WriteLine("CanDoLogin");
PasswordBox passwordBox = parameter as PasswordBox;
return ((!string.IsNullOrEmpty(_userName)) &&
(!string.IsNullOrEmpty(passwordBox.Password)));
}
}
及其 View
:
<Page
x:Class="MyProject.W81.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyProject.W81"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
DataContext="{Binding MainViewModel, Source={StaticResource Locator}}"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="33*"/>
<ColumnDefinition Width="77*"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" HorizontalAlignment="Center" Height="400" Margin="0" VerticalAlignment="Center" Width="600">
<TextBox
x:Name="userName"
TextWrapping="Wrap"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Text="{Binding UserName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
Width="247"
Margin="10,10,10,5"/>
<PasswordBox
x:Name="userPassword"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Width="250"
FontFamily="Global User Interface"
Margin="10,5"/>
<Button
x:Name="loginButton"
Content="Login"
HorizontalAlignment="Left"
VerticalAlignment="Stretch"
Command="{Binding DoLoginCommand}"
CommandParameter="{Binding ElementName=userPassword}"
Margin="10,5" />
</StackPanel>
</Grid>
</Page>
但在 Windows 8.1 上它不起作用。问题是 loginButton
始终处于禁用状态。
我在 doLoginCommand
创建时删除了 CanDoLogin
,我可以获得 _userName
和 userPassword.Password
值。
有什么建议吗?你知道为什么 loginButton
总是被禁用吗?
最佳答案
您是否必须在命令上调用 RaiseCanExecuteChanged 然后发生一些变化?很长一段时间没有做任何 WPF,但在应用程序中我总是调用 RaiseCanExecuteChanged。
在这种情况下,我会在 PasswordChanged 事件上调用 RaiseCanExecuteChanged。
关于c# - RelayCommand<PasswordBox> CanExecute 从不在 Windows 8.1 商店上运行,但在 WPF 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26221594/
我必须在 WPF 应用程序中使用此命令(我真的不喜欢它,但如果我必须这样做 -> 我必须这样做): http://wpftutorial.net/DelegateCommand.html 但我在这里遇
我有一个带有文本框和按钮的表单。 当该文本框的值发生变化时,按钮命令不会调用其命令的 CanExecute 方法。 命令参数已设置但似乎没有更改。加载窗口后,该按钮保持禁用状态。 我知道绑定(bi
在演示中,我有一个按钮来切换 bool 字段 isAsking。我创建了一个只有在 isAsking==true 时才能执行的命令。 一旦我按下 Toggle 按钮,okButton.IsEnable
在我的应用程序中,我有一个命令,我只希望用户能够在它尚未运行时触发。有问题的命令绑定(bind)到 WPF 按钮,这意味着如果 CanExecute 为 false,它会自动禁用该按钮。到目前为止一切
我有一个带有按钮的简单程序,该按钮绑定(bind)到 View 模型中的 Relaycommand,如下所示。我根据某个值将 CanExecute 设置为 true(由计时器设置,您可以在下面找到详细
我在我的 WPF 应用程序中使用 MVVM 模式。我正在尝试缓存我的窗口以提高性能。为此,我从不关闭它们,只是隐藏而不是关闭。所有隐藏的窗口都存储在字典中,因此我可以重复使用它们。当窗口再次打开时,我
我正在使用@Stephen-Cleary AsyncCommand implementation在 WPF (.NET 4.0) 中,现在我试图找出如何在命令定义期间指定 CanExecute 处理程
我有一个命令,检查 CanExecute 需要花费很多时间。现在,我问我,是否可以异步运行 CanExecute 方法? 最佳答案 嗯,这是可能的。您应该使用 CanExecutedChanged。在
我无法让 RelayCommand 正确启用/禁用附加控件。 我有一个附加到按钮的 EventToCommand 元素。该命令数据绑定(bind)到 ViewModel。最初,该按钮被禁用(预期行为)
好的。这是场景。这是 WPF + MVVM (.net 4.0) 应用程序: View:有一个 DataGrid 和两个按钮 Move Up/Move Down,它们应该在 DataGrid 中向上或
这个问题已经有答案了: In Java what exactly does File.canExecute() do? (3 个回答) 已关闭 9 年前。 我正在使用此代码来测试它; public c
快速记录,这样我就不会浪费任何人的时间。从 nuget 安装 MVVMLight 时,我最终收到错误 null : The term 'null' is not recognized as the n
我将控件绑定(bind)到 DelegateCommand,但它的 CanExecute 部分无法正常工作。我正在使用 Prism 库。谁能告诉我为什么? 命令声明和实例化: public Playe
我在 XAML 中有一个数据网格和保存按钮。我有一个绑定(bind)到数据网格的 ObservableCollection。 如果我在数据网格中添加/删除一行,我应该能够启用“保存”按钮以允许用户保存
我正在尝试使用 Caliburn Micro CanExecute 方法根据是否在文本框中输入值来绑定(bind)我的保存按钮是否被禁用。 这是我的看法: 我的POCO: [ImplementPr
我有一个应用程序,它在 MVVM 架构中使用 RelayCommand。 似乎在某个时间点,CanExecute 方法不再得到正确的重新评估。 (也许安装 VS2013 的最新更新导致了这个?)。 下
我正在使用 MVVM 在 WPF 中开发应用程序,但我被 ICommand 对象困住了。 我有一个包含一些按钮的窗口,因此,我将它们绑定(bind)到 XAML 中各自的 ICommand,如下所示:
我有一个非常简单的应用程序,其中包含一个 TextBox 和一个 Button。当输入到 TextBox 中的文本长度超过 5 个字符时,该按钮将被启用。这是我的 ViewModel 的代码: pri
在我的窗口中,我有加载和保存方法的按钮。我使用 CommandBinding 并且保存按钮有一个 CanExecute 属性来防止用户在加载数据之前保存数据。 CanExecute-Methode 连
我有以下命令: StartProductionCommand = new RelayCommand(OpenConnection, CanStartProduction); private bool
我是一名优秀的程序员,十分优秀!