Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

Xcode 4.2 Template Changes - UIApplication & MainWindow.xib

Background: Up until Xcode 4.2, new projects created using any of the templates would contain a MainWindow.xib and therefore pass nil as the fourth argument of UIApplicationMain(). Starting in Xcode ...
4
votes
2answers
493 views

iOS app - how to make main window rotate

I have a background image in my main window so that when I flip views, it's not a blank white screen behind, but an image. My problem is that this image doesn't rotate when the device rotates. Edit: ...
4
votes
5answers
4k views

Where is MainWindow.xib in new Xcode project?

I started a new project in Xcode 4 using the TabBar template. I noticed that there was no MainWindow.xib file in the project. Did Apple get rid of this file? How can I access the Mainwindow without ...
3
votes
4answers
140 views

C# - Program without a Window

I'm wondering whether it is possible to 'turn off' my main Window from loading automatically when my program starts with a command-line argument (i.e. when a file name is passed). The problem I have ...
3
votes
1answer
620 views

setup coredata, before appdelegate loads my mainWindow.xib

I have setup coredata in my appDelegate, but it first loads the mainWindow.xib and the corresponding controllers+views in that xib file. Those controllers need to have a managedObjectContext to load ...
2
votes
2answers
75 views

Accessing ICommands from MainWindow : Josh Smith's Article

I am following Josh Smith's Design explaining WPF + MVVM. I almost have the same requirement as his demo application. I have to assign the Save command from his CustomerViewModel class to a Toolbar ...
2
votes
1answer
110 views

How to prevent Delphi MainForm to show when a file dialog is showing?

My application has many forms, there is also one more important form, that is the main form, the behaviour is in general ok but in same cases (for example when I open a file dialog from a subform) the ...
2
votes
2answers
54 views

How can I recreate a UIView after I have released it?

In my MainWindow.xib I have many view controllers. Some of which are displayed as Modal views, and others are simply inserted. I am concerned with possible poor memory management because of the fact ...
2
votes
4answers
2k views

How to make my WPF MainWindow a singleton?

I want to make my MainWindow a singleton because I want to make accessing it from all other windows in my app easier. But I couldn't make it run. Here is what I did. As usual, I made the MainWindow ...
2
votes
2answers
361 views

Cannot show up WPF application when setting MainWindow manually and composing application (MEF)

I got my hands om MEF for a week now and I am trying to build up a WPF application that loads imported controls from MEF. I created a WPF application project and removed the default window and ...
2
votes
3answers
2k views

iPhone Navigation-Based application - some global toolbar questions

I started iPhone development two months ago, so I can't call myself "expert" ;-) But I learned a lot in these two months, a lot here from stackoverflow :) I'm working on an iPhone app which is based ...
1
vote
2answers
39 views

ItemsControl has no children during MainWindow's constructor

Based on the answer to SO question "WPF: arranging collection items in a grid", I have the following: <ItemsControl Name="itemsControl1" ItemsSource="{Binding MyItems}"> ...
1
vote
1answer
33 views

Type or namespace Window cannot be found

I am confused as to why a Window will not appear with the below code. Am I missing an import? using System.Text; using System.Xml; using System.Windows; using System; using System.Windows.Forms; ...
1
vote
1answer
333 views

Xcode 4: Switch Views to MainWindow.xib

I'm pretty new to Objective-C and Xcode, so it would be really helpful if you could give a detailed answer. I'm working with a Navigation-Based Application and I have a menu. If the user clicks on a ...
1
vote
1answer
109 views

WPF and C#: Accessing, referencing and setting value to control properties from other class

Well, the title says it all. A really simple setup - Visual Studio 2010's default new WPF project, with MainWindow and App classes and XAML. On MainWindow there's only a simple control, a texbox, ...
1
vote
0answers
308 views

MainWindow nib for iPad doesn't seem to take effect

I'm in Xcode 4, my app was originally for iPhone and is being converted to iPad. Currently when running the app in iPad, only the top left quarter of the screen responds to touches instead of the ...
1
vote
1answer
237 views

Emulate mouse events with PostMessage without gaining focus (WINAPI)

I emulated the mouse events using PostMessage and tested on the notepad application. I don't want to gain focus of the notepad application by sending mouse events. The events are received only if I ...
1
vote
1answer
95 views

Qt non-main windows

If I want to create a window that is not a main application window (like say I want a Preferences window to pop up when a preferences menu has been clicked in the main window), how would I accomplish ...
1
vote
1answer
299 views

App xaml assumes the first window instantiated is the main window (showdialog is ignored), I need to show multiple windows

I have the following code in my App.xaml.cs private void App_Start(object sender, StartupEventArgs e) { if ( CompletedInstall()) { //using show to allow for pacifier if loading is slow ...
1
vote
3answers
2k views

How to Find Children of a UserControl instead of a Window - replacing Window.FindName

I currently have a WPF project which has one main Window, and many UserControls which are children of this Window. Many of the children of this window are Tabs. I have successfully replaced my main ...
1
vote
2answers
602 views

Changing the width of Window when using pages in WPF

Im using pages in the WPF project that im currently working on. However i can't seem to figure out how to change the width of a page, or rather, the width of the window that hosts the pages? Setting ...
0
votes
1answer
51 views

Qt, new object for MainWindow, app crash,how to emit finished() signal

In main class MainWindow I have method which sets setEnabled("false") for each button, when the application is downloading. In other class "Download" I have method responsible for downloading. There ...
0
votes
3answers
146 views

“Application windows are expected to have a root view controller at the end of application launch” error only on iPad

I am trying to convert my iPhone only application to a Universal application. I switched the devices to Universal and let Xcode do it's thing making a MainWindow-iPad.xib for me, and now when I run ...
0
votes
1answer
39 views

SubView did not load in the first launching of my application

I'm new with iPhone development. I tried to build a simple application with a window and a navigation controller as a sub-view of this window. The problem is : the sub view did not load when I launch ...
0
votes
2answers
44 views

Start Cocoa app without showing the main window

I have a simple Cocoa app with a single NSWindow where I can enter some credentials and after the submission the app starts an another process. In case the credentials were entered once and cached I ...
0
votes
0answers
83 views

UITabBarController without being in MainWindow.xib

I am trying to achieve the following (XCode 4 not using storyboard). MainWindow.xib loads a view which shows loading/process UIView showing text while downloading from the web, which works fine. I ...
0
votes
1answer
48 views

“Deleted” viewcontroller from MainWindow.xib. Is this possible?

So I accidentally removed the viewcontroller from the mainwindow.xib in xcode. I tried dragging the xib back into the mainwindow, but nothing is working. Is there anyway to get the viewcontroller ...
0
votes
1answer
140 views

WPF closing child- closes parent-window

i have the pretty same sample as mentioned here. Fast concluded: MainWindow closes when the last childwindow is closed. My Problem: I couldn't solve my problems with the described solutions. I can't ...
0
votes
0answers
50 views

call of the method in mainwindow gives different result when it is called from usercontrol c#

In mainwindow I try to navigate through tabControl with method public void IzaberiDijagnostiku() { this.tabControl1.SelectedItem = tabItem3; this.tabItem3.Focus(); } and it works. ...
0
votes
0answers
24 views

MVVM: working with main window and user control

I have a main window with a menu bar. From there I want to open and place different usercontrols into the main window. How do I do that right so that I do not break the MVVM pattern design?
0
votes
2answers
66 views

WPF app does not execute Application_Exit method when user closes main window

I have a WPF/C# 4.0 App wich Application file XAML is: <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
0
votes
4answers
123 views

in WPF, returning back to MainWindow after setting the content elsewhere

I have no idea why this is so hard for me to find an answer to. Essentially, just like in a windows form, i create a new object of a page, and then display it. However you cant do that in WPF, so ...
0
votes
0answers
18 views

Mainwindow.xib stopped updating? What went wrong

I was just doing the exercises on one iphone book. I added a "changeWords" function in the **controller.h and **controller.m in the product file. However, the mainwindow.xib doesn't have the new ...
0
votes
1answer
849 views

Could not load NIB in bundle […] with name 'MainWindow' only on iPhone 4

I have a Problem with my App. It is working perfectly on my iPhone 3GS, but now where I tried to test it on an iPhone 4, it is crashing while the Splashscreen is visible. Here's the log: 2011-07-06 ...
0
votes
1answer
512 views

xcode MainWindow.xib vs ViewController.xib, trying to delete label from viewController.xib?

I'm trying to understand the relationship between the ViewController xib and the MainWindows.xib? I clicked the mainwindow xib from the project navigator a window pops up that I can draw on and then ...
0
votes
1answer
366 views

Adding and Removing UIBarButtonItems to UINavigationBar from Multiple Views

I currently have a Main Window set up as a UINavigationController (also is the root view controller), and I have two views. The first view is the login screen, and the second screen is a table view ...
0
votes
0answers
103 views

WPF - How to stop page from initializing

I have a WPF project with frame that contains a page in the MainWindow.XAML. The page loads its own XAML and VB file. The issue I am having is that I would like to control the current instance of ...
0
votes
4answers
167 views

Accessing MainWindow from another window

I have created a new Window that opens up from the MainWindow. Upon clicking a button from this Window, the Window should close and at the same time trigger some event in MainWindow. I thought this ...
0
votes
1answer
87 views

Why does the main window of an X11 application sometimes not appear in OS X

I have created Perl/Tk application for OS X compiled using ActiveState PDK PerlApp 8.2.1. The application requires X11 to work properly on OS X, and everything works fine on my own computer (OS X ...
0
votes
1answer
2k views

How do I access my Application Delegate's window accessor method from another object?

As mentioned before - I'm an Objective-C newbie of the first order but having read 4 physical books on the subject and a bucket-load of ebooks and documentation I still can't find what I'm looking ...
0
votes
1answer
177 views

wpf application not showing mainwindow anymore

My application builds and runs fine. I get an icon in the taskbar showing that the window exists, but it never shows. I call StartupUri="MainWindow.Xaml" from app.xaml and mainwindow just contains ...
0
votes
1answer
204 views

My Main Window will not change even though I change it?

Hey! Have a problem that is driving me crazy! My Main Window will not change when a make changes in interface builder in xcode 4, I have played around for over 2 hours trying to make changes but when ...
0
votes
1answer
288 views

Display ModalViewController with button in MainWindow.xib

I'd like to display a ModalViewController from a bar button in the MainWindow.xib file. How would I do this? The basic code I'm looking to use is this: -(IBAction)add { myCustomViewController ...
0
votes
0answers
900 views

UINavigationController does not recognize RootViewController properly

I have a problem with changing the RootViewController of my app UINavigationController. I started the app with the XCode 4 navigation-based application template. I was able to change the provided ...
0
votes
1answer
317 views

wpf - transparent MainWindow and issues with DragMove “Can only call DragMove when primary mouse button is down.”

I have a wpf project which uses transparent windows and I share this transparent window styling for my dialog windows and my mainwindow. I am getting an error on my DragMove() event of my MainWindow ...
0
votes
1answer
293 views

merging or combining two projects. two delegates, two windows

Thinking about divide and conquer, I decided to start an application having small pieces of my big app. I thought it was more convenient and easier specially as far as errors go. When I tried to merge ...
0
votes
1answer
382 views

iPhone Dev - Is it possible to load an app's mainWindow conditionally?

Is it possible to code this sequence of events once an iPhone app has been launched? User launches application. AppDelegate.m checks if data is present in internal database. If yes, MainWindow.xib ...
0
votes
1answer
876 views

Windows Forms: Change application mainwindow at runtime

Normally I would do Application.Run(myMainForm). But I want to do something like this: MyForm1 f = new MyForm1(); f.Close+=OnOpenOverviewWin(); Application.Run(f); void OnOpenOverviewWin() { ...
-1
votes
3answers
41 views

Getting an exception in “Dim mdi as new MDIParent1” in VB.NET

I'm getting an exception in this code: Imports System.Windows.Forms Imports System.Text Imports System.Diagnostics Public Class MDIParent1 Private Sub MDIParent1_Load(ByVal sender As ...