這是一個簡化的示例。我有一個用戶控件,包含一個「瀏覽到文件夾」功能,使用文本框和按鈕。點擊按鈕將打開瀏覽對話框,並且基本上會填入文本框。Caliburn Micro Message.attach不考慮datacontext的更改
<UserControl x:Class="MyUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:cal="http://www.caliburnproject.org"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<!-- Folder -->
<TextBlock>Path</TextBlock>
<DockPanel LastChildFill="True" Grid.Column="1">
<Button DockPanel.Dock="Right" cal:Message.Attach="[Event Click] = [Action BrowseHotFolder()]" Content="..." HorizontalAlignment="Left" Width="25" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Margin="0,0,5,0"/>
<TextBox Text="{Binding HotFolderPath, UpdateSourceTrigger=PropertyChanged, ValidatesOnNotifyDataErrors=True}" />
</DockPanel>
</Grid>
我有一個包含多個對象的列表框。選定的對象將作爲datacontext輸入到此用戶控件中。
<Window>
...
<Listbox ItemsSource="{Binding Items, Mode=OneWay}" SelectedItem="{Binding SelectedItem}">
...
<view:MyUserControl DataContext="{Binding SelectedItem}" />
</Window>
現在,讓我們說我有兩個項目在我的列表框中,我有第一個選擇。我在MyUserControl的文本框中填寫「foo」。然後我選擇第二項,並填寫「欄」。數據綁定工作正常,並且兩項都設置了正確的值。如果我然後單擊第一個瀏覽按鈕並選擇一個文件夾,它會將第一個項目的文本框更改爲所選路徑。但是,如果我選擇第二個項目並瀏覽到一個文件夾,它也將更改第一個項目的文本框。
我的猜測是消息附加語法不會調用正確的Item上的瀏覽操作。它無視datacontext(當前選定的項目),只是使用第一個。
我該怎麼辦?