Questions tagged [messagedialog]

119 questions
1
vote
2 answers

How to create a content dialog in the center of the screen in windows phone 8.1..?

I need to create a content dialog at the center of the screen in windows phone 8.1. (by center I mean horizontal and vertical center) By default it is created at the top of the screen. Can I do this....?
1
vote
1 answer

How to dismiss a MessageDialog from code in Windows Phone 8.1

How can I dismiss a Message dialog programmatically in Windows Phone 8.1. I created the dialog using showAsync(). If this is not possible which is the best method to create a custom message dialog with the following properties: 1. It can show test…
1
vote
1 answer

Customized Message Box in Windows Phone 8.1 WinRT application

I am not very much familiar with windows phone programming. I need a message box like this I have figured out how to show simple message box. Mean I can show a title (Alert), Desc (Account number is required), and a OK button. And now I don't know…
Yawar
  • 1,924
  • 3
  • 29
  • 39
1
vote
0 answers

Joptionpane.showMessageDialog truncates title if its longer than message

JOptionPane.showMessageDialog(this, "short message", "Title has to be very longer than text, so long that title is cropped.", JOptionPane.ERROR_MESSAGE); use null instead of this if u are testing directly in main method. As written in the above code…
1
vote
0 answers

Window icon for Gtk.MessageDialog?

I was wondering if it was possible to have a window icon placed in the dock bar for a generic MessageDialog. For any other window, I can easily set the icon from a file; and every time I open or I hide a window, then the relative windows icon is…
FrancescoN
  • 2,146
  • 12
  • 34
  • 45
1
vote
1 answer

How can I put a clickable link in a MessageDialog's text?

I have MessageDialog code like this: MessageDialog dlg = new MessageDialog("None of the images you selected contain location information. You can add your own after downloading http://exifpilot.com/"); await dlg.ShowAsync(); Rather than just have…
1
vote
1 answer

How to add multiple if loop results to a single JOptionPane message dialog?

I'm super new to all of this but I'm trying to figure out how to get all the following results (which are now shown in separate message dialogs following each other) into a single message dialog window. JOptionPane.showMessageDialog(null, "De prijs…
1
vote
0 answers

QML MessageDialog customize on android

Is there any way to customize MessageDialog buttons and appearance on android? I found DefaultMessageDialog.qml file where one can customize some features on desktop and ios but it doesn't make any effect when compiling to android. At least I have…
Nadarian
  • 962
  • 9
  • 22
1
vote
0 answers

Async message dialog wont show in C# for XAML app

I wanted to make 2 radiobuttons in C# for a XAML app. If you checked either radio button it should show a dialog message with the text: you have selected+the gender. But it doesn't seem to do that. Any ideas? public string gender =…
1
vote
1 answer

How to display textbox for user input inside Message Dialog in c# metro apps

I want to display a textbox inside my Message dialog to take user inputs & click OK button to retrieve textbox value in my MainPage.cs, private async void join_btn_Click(object sender, RoutedEventArgs e) { var messageDialog = new…
Marie
  • 27
  • 2
  • 7
1
vote
3 answers

How to change primary text in gtk messagedialog in python?

I'm creating program in python with gtk as gui using glade. In that program, I have several message dialog. It's simple if I just make many message dialog for every case I have. But, is it possible to just make one message dialog and use it for…
user2435611
  • 1,093
  • 1
  • 12
  • 18
1
vote
1 answer

I'm getting a blank error message dialog - what is it trying to say?

An error message dialog pops up when I try to run a Compare in Eclipse, but it seems the cat's got its tongue. How do I find out what it's trying to say?
CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
1
vote
1 answer

JOptionPane doesn't align to parent JFrame

This is driving me crazy: I programmed a small JFrame with several JPanels inside. I have several error messages that I have created with JOptionPane.showMessageDialog(this, "Text here"); But it always, no matter what, centers in the middle of…
fuLLMetaLMan
  • 165
  • 4
  • 17
1
vote
1 answer

wxPython message dialog won't work with function

I'm new to Python and just started writing a basic GUI program with wxPython. I have a series of text boxes where the user enters data and then they click a submit button. The submit button triggers a getvalue method for each box (it looks like…
Thomas May
  • 11
  • 3
1
vote
1 answer

how to creat a hyperlink url string in a Java MessageDialog?

a simple MessageDialog(or MessageBox,any method can open a dialog )like follows: MessageDialog.openInformation(shell, "Test", "Get help form this link www.google.com"); is there any way to make www.google.com a hyperlink? click the url and…