English 中文(简体)
What sort of Form/Window is the Excel 2010 SearchANDReplace Dialog?
原标题:

I like the Search And Replace Dialog of Excel 2010. I can enter data, see it replace in the grid behind AND THEN I can edit the data in grid without the Search/Replace Window disappearing/going into background.

The SearchAndReplace Window is not a Model dialog. And it also has not settings like "stay at Top" = true because switching to other open applications the Search/Replace Window with Excel together is going into the background.

What sort of Window is that?

Edit in grid behind but Search/Replace Window stays at top of the application BUT not at top of the operaton system!

public class MainWindow.cs

var window = new Window();
            window.Owner = this;
            window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;
            window.Width = 200;
            window.Height = 200;
            window.Show();
最佳回答

In Win32 terminology, it s likely to be WS_POPUP, with its owner set to the top-level Excel window.

Different programming environments have different names for this kind of window. For instance, .NET WinForms calls it an owned form.

问题回答

暂无回答




相关问题
wix custom dialog for config edit

hi i m trying make a setup msi for my application with wix v3 I have a problem about this task; I need a user input that will be stored in my application s config file (for example i need a dialog for ...

jQuery UI modal dialog not blocking

I am new to javascript and jQuery. I am trying to implement a modal dialog using jQuery UI widgets. The modal dialog shows up correctly with OK and Cancel buttons, but the dialog( open ) function ...

WinForms dialogs with TopMost = true

I have a dialog implemented in WinForms that is shown as a notify dialog on the bottom right of the screen. The problem is that whenever is shown it takes the focus and this happens only when TopMost =...

Can you set the FileFilters for a Gtk Dialog in Glade?

In my code, I have lines like this: Builder builder = new Builder(); builder.AddFromFile(gladefile); FileChooserDialog dialog = (FileChooserDialog) builder.GetObject("dialog"); FileFilter[] ...

热门标签