Disable right click wpf [duplicate] - c#

This question already has answers here:
Disable a right click (press and hold) in WPF application.
(2 answers)
Closed 9 years ago.
I am building a wpf app for a touch screen for windows 8 and I need to disable touch&hold (the equivalent of right click). I have read at the remarks on this link http://msdn.microsoft.com/en-us/library/system.windows.uielement.previewtouchdown.aspx that pressing a finger on the screen and holding it without moving it causes the press and hold behavior of a Stylus. Unfortunately, right click was not disabled by setting Stylus.IsPressAndHoldEnabled="False" in the XAML.
Could you please help me disable it? Thank you in advance :)

You can write event handler for OnPreviewMouseRightButtonDown event and set the value of isHandled to true.

Related

Is it possible to programmatically make an optical click? [duplicate]

This question already has an answer here:
Winforms Button Right-Click visual feedback (Show button in pushed state)
(1 answer)
Closed 5 years ago.
I'Ve got a winform application where specific Buttons should be visibly pressed whenever a specific key is pressed.
Capturing the key is not so much a Problem, but I did not find a method that allowed me to make it visible that a specific button as been "pressed".
(Even with button1.PerformClick() there was no visualization of the "click").
Is there any way to accomplish this?
You can use Control.Select() to activate the control.

Lost buttons in design view [duplicate]

This question already has answers here:
How to find overlapping controls that I added to form?
(2 answers)
Closed 6 years ago.
buttons problem in design view
Code for buttons is present in code file and the project is compiled successfully, but after compiling buttons are not showing in the form. when i try to create a new button it offers me button 4, where are my previous 3 buttons, when code is present here.. please help me on this
Go to the Design View and click anywhere on the Form and press F4 (View -> Properties Window)
Here, as you see above, you'll be able to see all the Controls that you've added to your Form.

Not able to get the mouse click event [duplicate]

This question already has answers here:
Capturing mouse/keyboard events outside of form (app running in background)
(2 answers)
Closed 8 years ago.
This might be a common question but I've been searching for almost 30 minutes, and couldn't find what I've been looking for.
In a windows forms application I need to capture the mouse click event both on and outside of the current form. But all the click events that I've come across are attached to the controls, hence when I click outside of the form no event is being fired :/
I am guessing there is a static Mouse object somewhere and I should be able to get the mouse click position maybe?
This is often referred as global mouse hook.
Here's an example: http://www.codeproject.com/Articles/7294/Processing-Global-Mouse-and-Keyboard-Hooks-in-C
The associated project on codeplex: http://globalmousekeyhook.codeplex.com/

Windowless WPF Application [duplicate]

This question already has answers here:
How to create a WPF Window without a border that can be resized via a grip only?
(5 answers)
Creating transparent background in WPF
(3 answers)
Closed 9 years ago.
I am hoping someone can point me in the right direction here. I am trying to turn my analog clock application into a windowless clock. I have searched google but I think my issue is I do not know the correct term for what I am trying to do.
My analog clock application is a circle that contains the clock hands. This is contained in a window like most other applications. I would like to remove the window and have only the clock show above the background. I would be able to bring up the close button maybe on mouse over. Or perhaps I could make the whole window transparent except for the clock and on mouse over I would be able to see the window and close it.
Anyone have any experience on this? Maybe some tips or a tutorial somewhere?
Thank you,
You can build your Window, and set the Background="Transparent" like so:
<Window ...
AllowsTransparency="True"
WindowStyle="None"
Background="Transparent" >
This gives you a window with a transparent background and no border.

Make controls disappear sidely [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How can I add moving effects to my controls in C#?
I'm work on on a C# WinForms project, and I created a login form.
I want when I click in a link in this login form to make the controls in the login form to disappear sidely (like the effect in iPad when you move your finger on it) and other controls to be appeared .
Is there any chance to make this possible (using WinForm)?
Check DevExpress slider controls for Windows Forms.
You should find some examples here :
http://www.devexpress.com/Products/NET/Controls/WinForms/index.xml
http://www.devexpress.com/Products/NET/Controls/WinForms/Bars/toolbar_menu.xml (slide menu effecT)

Categories

Resources