事件触发触发两次

问题描述 投票:0回答:2

我会尽力解释我的情况。

我正在使用C#开发一个软件,它允许多个用户同时编辑公共目录下的同一个文件,并查看其他人所做的更改。

所以我使用 FileSystemWatcher 来监视文件中的更改(以更新其他人的更改)和文本框的 textchanged (以保存对文件的更改,以便其他人的屏幕也会更新)。

如果我输入字符,它就可以工作(两个事件都会触发一次) 如果我尝试以任何形式删除字符(退格、删除等),它就不起作用。它不会删除任何字符,并且光标总是重置到位置 0。我使用 box.SelectionStart 来移动光标,当我输入字符。

我放置了一个类似计数器的东西来检查,我发现当我尝试删除字符时,这两个事件都会被触发两次。

我尝试搜索,但得到的答案好坏参半......

提前致谢

using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows;
    using System.Windows.Controls;`enter code here`
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    using System.Windows.Forms;
    using System.IO;
    using System.Windows.Threading;

    namespace SharedFileEditor
    {
        public partial class EditorView : Window
        {
            private EditorModel model;
            private FileSystemWatcher watcher;
            private string path;
            private int count = 0;
            private int count2 = 0;

            public EditorView()
            {
                InitializeComponent();
                model = new EditorModel();
                this.DataContext = model;
            }

            private void OpenClicked(object sender, RoutedEventArgs e)
            {
                using (OpenFileDialog dialog = new OpenFileDialog())
                {
                    dialog.Filter = "Text files (*.txt)|*.txt";
                    if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                    {
                        watcher = new FileSystemWatcher(System.IO.Path.GetDirectoryName(dialog.FileName), "*.txt");
                        Console.WriteLine(System.IO.Path.GetDirectoryName(dialog.FileName));
                        watcher.Changed += new FileSystemEventHandler(OnChanged);
                        watcher.EnableRaisingEvents = true;
                        path = dialog.FileName;
                        HandleOpen(dialog.FileName);
                    }
                }
            }

            internal void HandleOpen(string path)
            {
                FileStream f = File.Open(path, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite);
                StreamReader reader = new StreamReader(f);
                model.Content = reader.ReadToEnd();
                reader.Close();
            }

            private void OnChanged(object source, FileSystemEventArgs e)
            {
                if (this.Box.Dispatcher.CheckAccess())
                {
                    try
                    {
                        FileStream f = File.Open(path, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite);
                        StreamReader reader = new StreamReader(f);
                        model.Content = reader.ReadToEnd();
                        this.Box.CaretIndex = model.Cursor;
                        reader.Close();
                        Console.WriteLine("read:" + count2++);
                    }
                    catch (IOException x)
                    {
                        Console.WriteLine(x.Message);
                    }
                }
                else
                {
                    this.Box.Dispatcher.Invoke(
                    new updateContent(OnChanged), source, e);
                }
            }

            private void ContentChanged(object sender, TextChangedEventArgs e)
            {
                FileStream f = File.Open(path, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite);
                StreamWriter writer = new StreamWriter(f);
                writer.Write(this.Box.Text);
                model.Cursor = this.Box.SelectionStart;
                model.Content = this.Box.Text;
                writer.Close();
                Console.WriteLine("write:"+count++);
            }

            public delegate void updateContent(object source, FileSystemEventArgs e);
        }
    }
c# events
2个回答
3
投票

我发现了......这与我的应用程序的工作方式有关。通过将 EnableRaisingEvents 标志设置为 false 并稍后恢复为 true 即可解决。


1
投票

我认为您问题的实际答案包含在这篇文章中: FileSystemWatcher Changed 事件引发两次

总而言之,这是

FileSystemWatcher
类中的一个错误。保存过程通常成批进行。您的
FileSystemWatcher
班级将它们全部拾取。

© www.soinside.com 2019 - 2024. All rights reserved.