Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Chào anh Long, anh cho em hỏi: Bên MainWindow em cò 1 button, em muốn khi click vào button đó thì nó sẽ mở ra window1:
MainWindow.xaml:
<Window x:Class="Test_MVVM.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Test_MVVM"
xmlns:Duc="clr-namespace:ViewModel;assembly=ViewModel"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
mc:Ignorable="d"
x:Name="MainW"
WindowStartupLocation="CenterScreen"
Title="MainWindow" Height="450" Width="800">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<i:InvokeCommandAction Command="{Binding OpenWindowCommand}" CommandParameter="{Binding ElementName=MainW}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
<StackPanel>
<Button Content="Mở Window" Command="{Binding OpenWindowCommand}"></Button>
</StackPanel>
</Window>
MainWindowViewMODEL:
public ICommand OpenWindowCommand { get; set; }
public MainWindowViewMODEL()
{
OpenWindowCommand = new RelayCommand<Window>((p) => { return true; }, (p) =>
{
if (p == null)
{
return;
}
Window window = new Window();
window.Show();
p.Hide();
});
}
Window1.xaml:
<Window x:Class="Test_MVVM.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Test_MVVM"
mc:Ignorable="d"
Title="Window1" Height="450" Width="800">
<Grid>
<Button Content="Trần Hoài Ngọc"></Button>
</Grid>
</Window>
Mà em làm hoài không được, em có debug thử thì thấy p nó luôn bằng null. Mong anh và mọi người giúp đỡ em. Cảm ơn anh
Bên MainWindow.xaml, em đã thử như thế này rồi mà chạy không được, nó báo lỗi, khi em debug thì p nó vẫn bằng null:
<StackPanel>
<Button Content="Mở Window" Command="{Binding OpenWindowCommand}" CommandParameter="{Binding ElementName=MainW}"></Button>
</StackPanel>
Nhiều bạn vẫn chưa hiểu Command trong WPF nhỉ?
Giải thích về Command
Thật ra Command chỉ là cái Callback được Attach cùng với sự kiện Click, khi sự Click sảy ra thì Command sẽ được Invoke (Gọi) và có 2 loại Command, không tham số và có tham số. Xem code bên dưới sẽ hiểu.
Paramater có thể truyền thông qua Binding hoặc truyền từ XAML.
Trả lời cho câu hỏi của không mở được Window.
Bạn sửa code lại như bên dưới là chạy được nha.
Code của bạn gọi sai tên đối tượng nên không chạy được, vì Window của bạn là Window1 chứ không phải Window.
Trả lời cho câu hỏi tại sao p lại null.
Trong code của bạn ở trên có 2 Command OpenWindowCommand, nhưng Command đang được sử dung là Command không tham số, vì EventTrigger của Window không có sự kiện nào tên là Click nên không Command này không hoạt đông. Trong File XAML của MainWindow bạn sửa lại như này là được.