0

我创建了 WPF 应用程序,当用户选择并保存图像时,它将应用于所有按钮、导航栏项目等。我编写了代码以将图像路径保存在Settings.settings文件中。当我选择图像时,它会将其保存到数据库中,但navigation bar items or buttons source of image直到我重新启动我的应用程序才适用。这里我的代码是:

    public partial class MainWindow : DXWindow
    {
        public MainWindow()
        {
            InitializeComponent();
            Refreshicon();
        }

        public void Refreshicon()
        {
            BitmapImage bi = new BitmapImage(new Uri(ApplicationSettings.Default.ImageName));  //Image From Settings File!
            MessageBox.Show("Image Path" + bi.ToString());
            navBarGroup1.ImageSource = bi;
            navBarGroup2.ImageSource = bi;
            navBarItem1.ImageSource = bi;
            navBarItem2.ImageSource = bi;
        }

如何在navigation bar items or buttons不重新启动应用程序的情况下应用用户定义的图像路径?

编辑 //下面的代码是保存图像和调用Refreshicon()函数

 private void Button_Click_SaveImage(object sender, RoutedEventArgs e)
        {
        string imagepath = ApplicationSettings.Default.ImageName;
        ApplicationSettings.Default.SetImage(imageEdit1.ImagePath);
        MainWindow a = null;
        if (a == null)
            {
            a=new MainWindow();
            a.Refreshicon();

            }

        }
4

1 回答 1

2

您必须Refreshicon()在将图像路径写入Settings.settings文件的任何代码中调用您的方法。

编辑:

如果Button_Click_SaveImage在 之外的窗口中MainWindow,则需要将原始MainWindow实例的引用添加到子窗口类并调用其Refreshicon()方法。像这样的东西:

在子窗口类中,我们称之为DialogWindow:

public class DialogWindow : Window {
    // All your code here . . .

    public MainWindow Parent { get; set; }

    private void Button_Click_SaveImage( object sender, RoutedEventArgs e ) {
        // Your code up to the MainWindow a line goes here
        Parent.Refreshicon();
    }
}

然后,在 中MainWindow,当您实例化子窗口以进行显示时:

DialogWindow childWindow = new DialogWindow();
childWindow.Parent = this;
于 2013-09-06T17:49:08.767 回答