我如何知道何时在 MonoMac 中设置了控制插座?

发布于 2024-12-02 20:04:30 字数 206 浏览 2 评论 0原文

基本上,在我的应用程序的初始化中,我想在加载控件后设置其属性的值。在 MonoMac 中,当调用 MainWindowControllerInitialize 方法时,控制出口不一定可用(它们为 null)。

我找不到任何可以侦听的事件,例如 LoadComplete,然后对控件进行所需的初始化。

Basically, in my application's initialization, I want to set the value of a control's property once it has been loaded. In MonoMac, it appears that when the MainWindowController's Initialize method is called, the control outlets are not necessarily available (they are null).

I couldn't find any events such as LoadComplete that I could listen on and then do the required initialization on my control.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薯片软お妹 2024-12-09 20:04:30

您应该在 MainWindowController 类中使用 AwakeFromNib 方法。一旦所有对象都已加载并连接,就会调用它。

public override void AwakeFromNib ()
{
    base.AwakeFromNib ();

    // Do something here with the outlets
}

You should use the AwakeFromNib method in your MainWindowController class. It is called once all the objects have been loaded and connected.

public override void AwakeFromNib ()
{
    base.AwakeFromNib ();

    // Do something here with the outlets
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文