5

经过几个月的 WPF 实践后,我决定试一试 Caliburn Micro。我有几件事情我不能上班。我将首先发布代码,请参阅下面的问题/问题:

public class MainViewModel : PropertyChangedBase
{
    BindableCollection<PlayerProfile> _playerProfiles = staticInfos.Load();

    public BindableCollection<PlayerProfile> PlayerProfiles {
        get { return _playerProfiles; }
        set { 
            _playerProfiles = value;
            NotifyOfPropertyChange(() => PlayerList);
        }
    }

    string _tb_AddPlayer;
    public string TB_AddPlayer {
        get { return _tb_AddPlayer; }
        set { 
            _tb_AddPlayer = value;
            NotifyOfPropertyChange(() => TB_AddPlayer);
            NotifyOfPropertyChange(() => CanAddPlayer);
        }
    }

    List<string> _pl = new List<string>(); 
    public List<string> PlayerList {
        get{
            foreach (PlayerProfile p in PlayerProfiles) {
                if (!_pl.Contains(p.Name)) _pl.Add(p.Name);
            }
            return _pl;               
        }
        set {
            _pl = value;
            NotifyOfPropertyChange(()=>PlayerList);
        }
    }

    // Dummy Test String
    string _test;
    public string Test { 
        get { return _test; } 
        set { 
            _test = value; 
            NotifyOfPropertyChange(() => Test); 
        }
    }

    // Button Action
    public void AddPlayer() {
         _playerProfiles.Add(new PlayerProfile(TB_AddPlayer));
         Test = "Pressed";
         NotifyOfPropertyChange(() => PlayerProfiles);
    }

    public bool CanAddPlayer {
        get { return true; }
        // doesnt work: get { return !string.IsNullOrWhiteSpace(TB_AddPlayer); }
    }
}

所以这里是:我使用绑定约定,即 MainView 中的属性应该绑定到视图中同名的元素。

  • 首先,请注意这PlayerList只是PlayerProfiles我创建的玩家名称列表,因为当绑定到 aCombobox时,当我命名时它们不会出现Combobox PlayerProfiles,但是当我通过列表并命名时它们会出现PlayerList- 虽然我已经覆盖ToStringPlayerProfile class. 为什么?这看起来很笨拙...(如果您想知道的话,该staticInfos.Load()方法会填充PlayerProfiles几个虚拟名称...)

  • 当我在文本框中输入内容(称为TB_AddPlayer)并按下按钮(称为AddPlayer)时,会出现测试字符串,所以我知道发生了操作,但新名称没有出现在组合框中

  • 此外,如果我使用属性中的注释行CanAddPlayer,则永远不会启用该按钮,如果我开始键入,也不会在文本框失去焦点且其中包含文本时。为什么?

抱歉这些基本问题,我已经盯着“Hello World”caliburn 示例看了好几个小时,看不到我遗漏了什么……谢谢。提前!

编辑:这是 .xaml

<UserControl x:Class="MixGameM8_MVVM.Views.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MixGameM8_MVVM.Views">

<UserControl.Resources>
    <Style TargetType="TextBlock" x:Key="TB_A">
        <Setter Property="Margin" Value="5,5,5,5" />
        <Setter Property="HorizontalAlignment" Value="Center" />
        <Setter Property="FontSize" Value="15" />
    </Style>

    <!-- ... Some more of this kind -->
</UserControl.Resources>

<Grid>
    <!-- ... Grid definitions -->
    <Border Style="{StaticResource Border_A}" Grid.Row="0" Grid.Column="0">
        <StackPanel Name="SP_Controls">
            <TextBlock Style="{StaticResource TB_A}" Text="Controls"/>
            <ComboBox Style="{StaticResource CB_A}" Name="PlayerProfiles"/>
            <StackPanel Orientation="Horizontal">
                <TextBox Style="{StaticResource TBox_A}" Name="TB_AddPlayer" MinWidth ="100" />
                <Button Style="{StaticResource Button_AddPlayer}" Content="Add Player" Name="AddPlayer" />
             </StackPanel>
        </StackPanel>
    </Border>

<!-- ... And some more cells in the grid, one containing the dummy textbox -->

</Grid>
</UserControl>
4

2 回答 2

4

首先,我将首先删除您的PlayerList财产,然后像这样更新您的PlayerProfiles财产:

 public BindableCollection<PlayerProfile> PlayerProfiles {
    get { return _playerProfiles; }
    set { 
        _playerProfiles = value;
        NotifyOfPropertyChange(() => PlayerProfiles);
    }
}

接下来,我不会将您的视图模型属性称为描述它们如何呈现的东西,即更改TB_AddPlayer为just AddPlayer(或者更好PlayerName的是,它就是这样的东西)。

接下来,如果你调用你的 ComboBox PlayerProfiles,那么绑定应该通过约定自动发生。在您的 AddPlayer 方法中,您希望通过您的属性添加新的玩家资料,而不是支持字段:

改变:

public void AddPlayer() {
     _playerProfiles.Add(new PlayerProfile(TB_AddPlayer));
     Test = "Pressed";
     NotifyOfPropertyChange(() => PlayerProfiles);
}

到:

public void AddPlayer() {
     this.PlayerProfiles.Add(new PlayerProfile(this.PlayerName));
}

因为 PlayerProfiles 是一个 BindableCollection,所以将执行更改通知,并且您的 ComboBox 将被更新。

此外,我总是会为您的支持字段明确指定访问修饰符,即private string _playerName;不仅仅是字符串_playerName;

尝试这些更改,如果仍有问题,请更新问题中的代码。

于 2012-10-22T12:34:09.623 回答
1

我想我得到了答案

在您的文本框中使用 updatesourcetrigger=property changed The Can Execute 没有更新,因为您没有使用取决于(或依赖项不记得名称)属性。

组合框未更新导致您应该将其绑定到可绑定集合。

于 2012-10-22T12:59:40.570 回答