我有一个大问题,现在试图解决它......
所以我尝试做的事情: - 我使用Codebehind文件向我的Wrapgrid添加一个Button - 此按钮应更改作为图像来源的变量
Datenbank database = new Datenbank();
Binding bind = new Binding("ValueGet");
bind.Source = database;
bind.Mode = BindingMode.OneWay;
System.Windows.Controls.Button champbtn = new System.Windows.Controls.Button();
champbtn.Name = "btnAhri";
champbtn.Width = 60;
champbtn.Height = 60;
champbtn.Margin = new Thickness(4);
champbtn.SetBinding(Button.CommandProperty, bind);
champbtn.ToolTip = "Ahri";
champbtn.Content = "Press me";
WrapGrid.Children.Add(champbtn);
这很有效。我得到了我的按钮和它的可点击性。 现在你可以看到我添加了一些命令绑定到我的其他类“Datenbank”,如下所示:
public class Datenbank : INotifyPropertyChanged
{
private string _Source;
public string ImgSource
{
get { return _Source; }
set
{
_Source = value;
NotifyPropertyChanged("ImgSource");
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyname)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyname));
}
public DelegateCommand ValueGet{ get; set; }
public Datenbank()
{
ValueGet = new DelegateCommand(Ahri);
}
private void Ahri(object sender, EventArgs e)
{
System.Windows.Forms.MessageBox.Show("test");
ImgSource = "Ahri_Square_0.png";
}
}
这是我的DelegateCommand类:
public class DelegateCommand : ICommand
{
public delegate void SimpleEventHandler(object sender, EventArgs e);
private SimpleEventHandler _eventHandler;
public DelegateCommand(SimpleEventHandler eventHandler)
{
_eventHandler = eventHandler;
}
public bool CanExecute(object parameter)
{
return true;
}
public event EventHandler CanExecuteChanged;
public void Execute(object parameter)
{
_eventHandler(this, new EventArgs());
}
}
如您所见,生成的按钮应更改“ImgSource”字符串
此变量绑定到我的xaml代码中的图像框:
<Image Height="50" Name="image1" Stretch="Fill" Width="50" Source="{Binding ImgSource, Source={StaticResource database}}" />
这也没问题。所以现在我的问题是,当我按下生成的按钮时,我的“测试”消息框出现了,但图像没有改变它的来源,我真的不知道如何解决这个问题。
当我手动添加一个与上面生成的按钮具有相同命令的按钮时,它可以正常工作!
<Button Command="{Binding ValueGet,Source={StaticResource database}}">Press ME</Button>
它会立即改变图像源并显示图片,但不会生成图片,这很重要!
所以我希望有人可以帮我解决这个问题,因为我找不到问题。
答案 0 :(得分:0)
图像未构建为应用程序/程序集的资源。 试试吧。
构建动作值应为“资源”。
我希望这有帮助。