我有两个WPF应用程序(Application1和Application2),Application1将用户添加到Users.xml文件,Application2将所有从Users.xml的名称显示到标签。要刷新Application2中的Label,我必须在当前实现中按Refresh按钮。我想建立一种机制,以便每当我向Application1添加用户时,Application2都会自动更新Label。我可以实现的一种方法是,每当Application1添加一个用户,它在XML文件中设置一些标志(例如IsSync = false),并且Application2不断监视该标志,并且每当它看到IsSync = false时,它就会更新Label并设置IsSync = true 。但是我想知道是否还有其他最佳方法(也许是通过处理Application1中Application2的Refresh按钮的发布者/订阅者方法)来实现的。你能帮我实现这个目标吗?我已经在下面附上了两个XAML /代码:

c# - 同一台计算机中两个不同的WPF应用程序之间的通信-LMLPHP

应用1

XAML

<Window x:Class="Application1.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:Application1"
        mc:Ignorable="d"
        Title="Application1" Height="500" Width="500">
    <Grid>
        <Label Name="lblUserName" Content="Name" HorizontalAlignment="Left" Margin="42,60,0,0" VerticalAlignment="Top"/>
        <TextBox Name="txtUserName" HorizontalAlignment="Left" Height="23" Margin="91,60,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="300"/>
        <Button Name="btnAdd" Content="Add" HorizontalAlignment="Left" Margin="310,110,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
    </Grid>
</Window>


代码隐藏

using System.IO;
using System.Windows;
using System.Xml;
using System.Xml.Linq;

namespace Application1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        private static string fullPath = "C:\\Files\\Users.xml";

        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            if (!string.IsNullOrWhiteSpace(txtUserName.Text))
            {
                if (!File.Exists(fullPath))
                {
                    // If Users.xml is not exists, create a file and add Textbox Name to the file
                    CreateUsersXMLAndAddUser();
                    txtUserName.Text = "";
                }
                else
                {
                    // Add Textbox name to the Users.xml
                    AddUser();
                    txtUserName.Text = "";
                }
            }
            else
            {
                MessageBox.Show(this, "Name can not be empty", "Required", MessageBoxButton.OK, MessageBoxImage.Error);
            }
        }

        private void AddUser()
        {
            XElement xEle = XElement.Load(fullPath);
            xEle.Add(new XElement("User", new XAttribute("Name", txtUserName.Text.Trim())));
            xEle.Save(fullPath);
        }

        private void CreateUsersXMLAndAddUser()
        {
            XDocument xDoc = new XDocument(
                                      new XDeclaration("1.0", "UTF-8", null),
                                      new XElement("Users",
                                              new XElement("User",
                                              new XAttribute("Name", txtUserName.Text.Trim())
                                              )));

            StringWriter sw = new StringWriter();
            XmlWriter xWrite = XmlWriter.Create(sw);
            xDoc.Save(xWrite);
            xWrite.Close();
            xDoc.Save(fullPath);
        }
    }
}


应用2

XAML

<Window x:Class="Application2.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:Application2"
        mc:Ignorable="d"
        Title="Application2" Height="500" Width="600">
    <Grid>
        <Label Name="lblUsers" FontSize="20" FontWeight="UltraBold" HorizontalAlignment="Left" Margin="20,20,0,0" VerticalAlignment="Top"/>
        <Button Name="btnRefreshUsers" Content="Refresh" FontSize="20" FontWeight="UltraBold" HorizontalAlignment="Left" Margin="450,39,0,0" VerticalAlignment="Top" Height="100" Width="100" Click="btnRefreshUsers_Click"/>
    </Grid>
</Window>


代码隐藏

using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Windows;
using System.Xml.Linq;

namespace Application2
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        private static string fullPath = "C:\\Files\\Users.xml";
        StringBuilder userList;

        public MainWindow()
        {
            InitializeComponent();
            userList = new StringBuilder();

            lblUsers.Content = string.Empty;
            lblUsers.Content = LoadUsers();
        }

        private StringBuilder LoadUsers()
        {
            userList.AppendLine("  Users  ");
            userList.AppendLine("---------");

            if (File.Exists(fullPath))
            {
                XElement xelement = XElement.Load(fullPath);
                IEnumerable<XElement> users = xelement.Elements();

                foreach (var user in users)
                {
                    userList.AppendLine(user.Attribute("Name").Value);
                }
            }
            else
            {
                userList.AppendLine("Nothing to show ...");
            }
            return userList;
        }

        private void btnRefreshUsers_Click(object sender, RoutedEventArgs e)
        {
            userList.Clear();
            lblUsers.Content = string.Empty;
            lblUsers.Content = LoadUsers();
        }
    }
}

最佳答案

进程之间有几种通信方式:


MSMQ(Microsoft MessageQueue)
套接字编程
命名管道
Web服务(WCF,...)


从理论上讲,在通信水平较低的情况下,大多数这种技术都使用套接字作为主要部分。因此,套接字编程是低级通信,您需要更多控制权,还需要做更多工作才能使其正常工作。

我已经阅读了一个很好的答案:

IPC Mechanisms in C# - Usage and Best Practices

08-06 19:22