问题标签 [mainwindow]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - C# WPF Subscribe to Event in another Class fired from a UserControl
I have read through a lot of articles to resolve this problem, but I can't get this to work.
The Situation: I have a WPF MainWindow where I am loading UserControls into it. The Mainwindow should listen to an EventHandler in a Class called Navigation. The Event will be fired upon certain changes in the UserControls.
So far I can confirm that the UserControls can fire the Event, but the MainWindow does not pickup the Throw.
Navigation Class:
UserControl:
The MainWindow:
However, the _Thrower never picks up the Fired Event..
Any help is greatly appreciated! This is starting to hurt :)
Greetings, Tom
python - 从子程序更新进度条
我想用我在另一个子例程上执行的任务的进度更新我在主窗口上的进度条,这可能吗?
为了尽可能清楚,我将有 2 个文件:
在我的Mainwindow.py 中,我会有类似的内容:
然后我会有一个单独的文件用于计算:Calculations.py
那可能吗?
还是应该以不同的方式完成?
谢谢。
objective-c - iOS 8 - 视图未调整全屏大小
我有使用 MainWindow.xib 的旧代码,在 iOS 7 下一切正常,但在 iOS 8 中它留下了一些底部区域。
附上图片 -
请建议任何人,我该如何解决这个问题。
python - Getting an entry from a child window?
For some reason i can't get the entry from the child window. I want to get the entry from the child window and then graph a rectangle. The error that i get is: x=float(self.txtSide.get()) AttributeError: 'MainWindow' object has no attribute 'txtSide'
java - 为 JAVA/SWING 应用程序创建一个主窗口
当我开始开发我的应用程序时,我只是开发了 Seprate JFrame 框架并一一测试它们。现在,我想为我的应用程序创建一个主窗口。我读了很多,但直到现在,我很难在 java 和 swing 中做到这一点。我通过创建一个主窗口作为 JFrame 的实例来尝试此操作,但出现错误,表明我无法在另一个 JFrame 中显示 JFrame。
wpf - wpf应用程序中的MainWindow子项
我有一些 WPF 4 书中的按钮代码,我想从这里显示(不是来自 XAML),但是当我想添加按钮“b”作为主窗口的子窗口时,我得到异常和信息:ContentControl 的内容必须是单个元素。
如何在 c# 中显示它?
python - 如何从另一个python脚本调用pyside MainWindow中的函数
这是我的 main.py 我有一个名为 loadShot 的函数,我想从另一个函数调用它
这是我的另一个 python 文件,它是一个关键的侦听器,我想要 loadShot 函数。问题是我一直将 MainWindow 作为实例加载。这是我做不到的。我只需要能够在我的 MainWindow 类中调用该函数而无需加载另一个实例。
android - Qt 创造者。Qt Quick Application 屏幕未显示在我的 Android 设备上
我是 Qt Creator 的新手,我正在尝试创建一个简单的应用程序。到目前为止,它只是非常基本的,只有主屏幕。我已经编写了 QML 代码,并尝试在我的 OnePlus One Android 手机上运行它。为了在我的手机上运行程序,我拥有所有必要的组件,因为 Qt 示例都运行良好。
该应用程序在我的设备上构建并安装,但是它在一个空白的黑屏中解析,上面什么都没有。我已经尝试了大约 2 小时不同的可能解决方案,但没有任何效果。谁能指出我正确的方向,好吗?
我的 QML 代码(图片已正确添加到目录中),其他一切都没有改变:
c# - 如何将应用程序控制权传递给另一个 WPF 窗口?
我正在设置一个简单的 WPF 应用程序,它查看它的命令行参数以确定接下来应该显示哪种类型的窗口。确定后,我通过调用new ApplicationWindow()
、设置内容和调用来显示下一个窗口Show()
。问题是该MainWindow
实例似乎具有“应用程序控制” - 即当它关闭时,其他一切也是如此。
它是这样的:
这些方法按照我在此处放置的顺序通过各种事件被调用。我省略了一些字段和属性。
问题是当this MainWindow
关闭时,window
实例化的ApplicationWindow
. 我认为这是因为MainWindow
创建它。
但是,我确实希望能够关闭MainWindow
并继续将另一个窗口作为“主”窗口 - 那么如何将实例化ApplicationWindow
与其父窗口分离MainWindow
以使其继续?
我已经看到在 App.xaml 中设置 Application.MainWindow 会更改主窗口 - 但我没有引用可以放入静态 XAML 文件的实例化窗口。