mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-04 22:27:29 +08:00
49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Data;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace CodeWalker.WinForms
|
|||
|
{
|
|||
|
public partial class TextBoxScrollSyncFix : TextBoxFix
|
|||
|
{
|
|||
|
public TextBoxScrollSyncFix()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
public const int WM_VSCROLL = 0x115;
|
|||
|
|
|||
|
List<TextBoxScrollSyncFix> peers = new List<TextBoxScrollSyncFix>();
|
|||
|
|
|||
|
public void AddPeer(TextBoxScrollSyncFix peer)
|
|||
|
{
|
|||
|
peers.Add(peer);
|
|||
|
}
|
|||
|
|
|||
|
private void DirectWndProc(ref Message m)
|
|||
|
{
|
|||
|
base.WndProc(ref m);
|
|||
|
}
|
|||
|
|
|||
|
protected override void WndProc(ref Message m)
|
|||
|
{
|
|||
|
if (m.Msg == WM_VSCROLL)
|
|||
|
{
|
|||
|
foreach (var peer in this.peers)
|
|||
|
{
|
|||
|
var peerMessage = Message.Create(peer.Handle, m.Msg, m.WParam, m.LParam);
|
|||
|
peer.DirectWndProc(ref peerMessage);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
base.WndProc(ref m);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|