J'ai un projet à faire en c sharp. Creer une application et y mettre des restrictions aux utilisateurs. J'ai réussi à cacher la barre des taches et le menu démarrer mais pas desactiver la touche Windows.
Voici un peu ce que j'ai fait:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
 
using System.Windows.Forms;
using Microsoft.Win32;
namespace UserControl
{
    class Taskbar
    {
        [DllImport("user32.dll")]
    private static extern int FindWindow(string className, string windowText);
 
    [DllImport("user32.dll")]
    private static extern int ShowWindow(int hwnd, int command);
 
    [DllImport("user32.dll")]
    public static extern int FindWindowEx(int parentHandle, int childAfter, string className, int windowTitle);
 
    [DllImport("user32.dll")]
    private static extern int GetDesktopWindow();
 
    private const int SW_HIDE = 0;
    private const int SW_SHOW = 1;
 
    protected static int Handle
    {
        get
        {
            return FindWindow("Shell_TrayWnd", "");
        }
    }
 
    protected static int HandleOfStartButton
    {
        get
        {
            int handleOfDesktop = GetDesktopWindow();
            int handleOfStartButton = FindWindowEx(handleOfDesktop, 0, "button", 0);
            return handleOfStartButton;
        }
    }
 
    public Taskbar()
    {
        // hide ctor
    }
 
    public static void Show()
    {
        ShowWindow(Handle, SW_SHOW);
        ShowWindow(HandleOfStartButton, SW_SHOW);
 
    }
 
    public static void Hide()
    {
        ShowWindow(Handle, SW_HIDE);
        ShowWindow(HandleOfStartButton, SW_HIDE);
 
    }
 
    }
 
}
Je voudrai intégrer l'activation et la désactivation de la touche Windows dans le meme code.
Merci.