我需要改变点击舞台的最大化按钮的效果,所以它将被放入另一个阶段。但要实现这一点,我需要在实际完成之前处理最大化请求。我试过这个:
[XDebug]
zend_extension = "D:\XAMPP\php\ext\php_xdebug.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "D:\XAMPP\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host=192.168.1.5
xdebug.trace_output_dir = "D:\XAMPP\tmp"
xdebug.remote_autostart=on
xdebug.remote_enable=on
xdebug.remote_connect_back=1
xdebug.remote_port=9000
xdebug.remote_mode=req
xdebug.idekey="netbeans-xdebug"
但它的调用太晚了,舞台已经最大化了。即使我隐藏它,当窗口最大化然后它很快消失时,会有一个丑陋的视图。那么有什么方法可以使它正常工作吗?