Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经创建了一个自定义控件ImageView : Grid,我需要一个 Grid 的 Load 事件,但我没有 XAML,我不知道如何在没有 XAML 的情况下制作事件。
ImageView : Grid
如何为自定义控件创建或继承 Load 事件?
如果要附加到基类的 Load 事件,可以使用常用方法:
public ImageView() { Load += LoadHandler; }
如果您想公开它以供使用,那么 Load 仍然可以从基类中获得。
您能否更具体地说明您要查找的内容?