Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I need to create a click event that is trigged when the background of the page (Main page) is clicked/tapped.
I figured it out, you need to add a tap event to the layout (Stack layout in my case)
More info: https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/gestures/tap
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
what I am asking is when writing WPF applications in C# how can I get it so on a press of the menu bar the window changes to a different layout with different feature.
I think you should use a TabControl, see https://msdn.microsoft.com/en-us/library/system.windows.controls.tabcontrol(v=vs.110).aspx
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
After opening a WinForm I want to have a button that "reloads" the form. I want to make the Load Event run again.
Is that a way? Thanks!
Just call it again like this:
Form1_Load(null, EventArgs.Empty);
Just remember to use your own form's name
I hope this helps.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I want to load a page and then stop other action for sleep(time), but the page load after Sleep. How can I prevent that and after loading succesfully a page go to sleep command?
myWebBrowser.Url = new Uri("myadress");
System.Thread.Sleep(10000);
// other instructions...
Can you write thread.sleep(1000); in Completed event for webbroswer!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
i need to press the ok button when this popup appear automatically
i tried with sendkeys but didn't work
this is the popup:
Doing this from a web browser is never going to happen, that is a serious security violation. The reason a popup is shown is so that a user can choose to not accept a certificate that they don't want.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to write a code in click event of Open button which should Open File Specified in Textbox.
Is there any code wich can do this Task?
maybe System.Diagnostics.Process.Start(textBox1.Text)