headsetctl.rc

来自「CE下基于PXA255的蓝牙驱动」· RC 代码 · 共 36 行

RC
36
字号
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//

#include "windows.h"
#include "resource.h"
#include "commctrl.h"

//
// Dialogs
//
IDD_HEADSET DIALOG DISCARDABLE  0, 0, 143, 130
STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_OVERLAPPED
CAPTION "Bluetooth Headset Control"
FONT 8, "MS Sans Serif"
BEGIN
    PUSHBUTTON      "Start",IDC_STARTSTOP,26,2,90,20
    CONTROL         "",IDC_SPKVOL,"msctls_trackbar32",TBS_VERT | TBS_BOTH | 
                    TBS_NOTICKS | WS_TABSTOP,35,49,20,57
    CONTROL         "",IDC_MICVOL,"msctls_trackbar32",TBS_VERT | TBS_BOTH | 
                    TBS_NOTICKS | WS_TABSTOP,81,49,20,58
    LTEXT           "Speaker",IDC_STATIC,31,38,30,10
    LTEXT           "Microphone",IDC_STATIC,73,38,40,10
    GROUPBOX        "Volume Control",IDC_STATIC,17,28,104,82
    LTEXT           "Status:",IDC_STATIC,9,115,25,12
    LTEXT           "Not Connected",IDC_STATUS,36,115,100,12
END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?