我正在创建一个自定义控件。在那个控件上,我有大约 20 个子控件。当我在我的用户控件上移动光标时,我希望光标根据它正在移动的子控件进行更改。
例如:
User Control
--Control 1 : if(Condition 1) { Mouse - Wait } else { Mouse - Default }
--Control 2 : if(Condition 1) { Mouse - Hand } else { Mouse - Default }
--Control 3 : Mouse - Default
......很快。
有什么方法可以确定我在哪个子控件上移动的用户控件的 MouseMove 事件,以便我可以在单个事件中更改我的光标。