在我们的项目中,我们需要在连接到 CPU 的扩展显示器中显示仪表板(Windows 窗体)。
目前我们能够在扩展显示中显示仪表板,但是一旦系统(主)被锁定,扩展显示就不会显示任何内容。
我们不允许对工作站锁定进行任何更改。
即使主要被锁定,我们也必须在扩展显示器上显示仪表板。一旦将仪表板发送到扩展显示器,是否有任何方法可以消除对主显示器的依赖?
我们正在使用 VS2013 和 C#。
谢谢, 斯里克
最佳答案
“我们不允许对工作站锁定进行任何更改。”
很确定这是一个 Windows 问题,如果不“更改工作站锁定”,就没有办法绕过它。为了进一步说明这一点,Windows 会在您锁定计算机时锁定所有显示 - 原因很明显。锁定计算机并仍然显示桌面/文件是没有意义的。除非您实际上没有“锁定”计算机,否则辅助显示器将被 Windows 锁定(假设这是您正在使用的操作系统)。
为了扩展这一点,实际上可以不锁定计算机,而是创建一个全局键/鼠标钩子(Hook)(不要忘记您还需要额外的长度来锁定 CTRL+ ALT+DELETE 如果你想正确执行)忽略所有按键/鼠标移动。
我身上没有用 C# 编写的代码,但这是我编写的 AutoIt 代码,它可以锁定我的键盘和鼠标,并在我的屏幕上显示飞翔的喵星人。如果有人按下某个键,它会通过 Windows API 锁定计算机(真正的方式)。
;///////////////////////////////
;// Lock Code Created by DT //
;///////////////////////////////
#include <WinApi.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Sleep(5000);
;///////////////////////////////////////////////////////////////
;// Hook User32.dll to block Mouse/Keyboard Input and Monitor //
;///////////////////////////////////////////////////////////////
Global $stub_KeyProc = DllCallbackRegister("_KeyProc", "int", "int;ptr;ptr")
Global $stub_MouseProc = DllCallBackRegister("_MouseProc", "int", "int;ptr;ptr")
Global $keyboardHook = _WinAPI_SetWindowsHookEx($WH_KEYBOARD_LL, DllCallbackGetPtr($stub_KeyProc), _WinAPI_GetModuleHandle(0), 0)
Global $mouseHook = _WinAPI_SetWindowsHookEx($WH_MOUSE_LL, DllCallbackGetPtr($stub_MouseProc), _WinAPI_GetModuleHandle(0), 0)
;//////////////////////
;// Global Variables //
;//////////////////////
Global $lock = False ;If a key is pressed, set this to True and handle it in our while loop (gets messy otherwise)
Global $desktopSize = WinGetPos("Program Manager") ;Get the desktop size from Program Manager
Global $maxX = $desktopSize[2]; - 600 ;Set a Max X Position by using the width of our image and width of desktop
Global $maxY = $desktopSize[3]; - 255 ;Set a Max Y position by using the height of our image and the height of desktop
Global $splashX = Int(Random(1, $maxX-1)) ;Display our splash randomly in the acceptable space
Global $splashY = Int(Random(1, $maxY-1)) ;Display our splash randomly in the acceptable space
Global $splashXVel = Int(Random(10,20)) ;Setup a random velocity for our image
Global $splashYVel = 0;Int(Random(-5,5)) ;Setup a random velocity for our image (No need for Y Velocity anymore)
;////////////////////////////
;// Create and Display GUI //
;////////////////////////////
$Form1 = GuiCreate("Locked",400,280,$splashX, $splashY, $WS_POPUP, $WS_EX_LAYERED) ;Create a GUI Window (Layered For Transparency)
$gifTest = ObjCreate("Shell.Explorer.2") ;Create a Shell.Explorer Object to display a GIF
$gifTest_ctrol = GuiCtrlCreateObj($gifTest,-5,-5,410,290) ;Push it slightly out of our GUI bounds to hide the border
; ;Create a variable to hold some simple HTML code that displays a GIF
$URL = "about:<html><body bgcolor='#dedede' scroll='no'><img src='C:\Users\DT\Pictures\nyan-cat.gif'></img></body></html>"
$gifTest.Navigate($URL) ;Point our shell explorer to our HTML code
_WinAPI_SetLayeredWindowAttributes($Form1, 0xdedede, 255) ;Set our transparency color to our html background to make everything transparent
GUISetState(@SW_SHOW) ;And finally, display our GUI
;///////////////////////////////////////////////////////
;// Function that is called whenever a key is pressed //
;///////////////////////////////////////////////////////
Func _KeyProc($nCode, $wParam, $lParam) ;Grab parameters from our DLL Hook
If $nCode < 0 Then Return _WinAPI_CallNextHookEx($keyboardHook, $nCode, $wParam, $lParam) ;If it's not actually a key being pressed call the next hook
$lock = True ;Otherwise, it's time to lock the computer
Return 1 ;Don't call the next hook (supress key press)
EndFunc
;///////////////////////////////////////////////////////
;// Function that is called whenever the mouse moves //
;///////////////////////////////////////////////////////
Func _MouseProc($nCode, $wParam, $lParam) ;Grab parameters from our DLL Hook
randomizeVelocity() ;randomize our splash velocity
randomizePosition() ;and randomize its position
Return 1 ;then supress the mouse movement
EndFunc
;///////////////////////////////////////////////////////////////////////
;// Simple randomize functions to reuse code and for ease of reading //
;///////////////////////////////////////////////////////////////////////
Func randomizeVelocity()
$splashXVel = Int(Random(10,20))
;$splashYVel = Int(Random(-3,3))
EndFunc
Func randomizePosition()
$splashX = Int(Random(1, $maxX-1))
$splashY = Int(Random(1, $maxY-1))
EndFunc
;/////////////////////////////////////////////////
;// Our program loop (main function basically) //
;/////////////////////////////////////////////////
hideTaskbar();
While 1 ;loop indefinitely (until we exit :))
$splashX = $splashX + $splashXVel ;Modify splash x position by velocity
$splashY = $splashY + $splashYVel ;Modify splash y position by velocity
WinMove($Form1,"" , $splashX, $splashY) ;and move the window
;If $splashX >= $maxX Or $splashX <= 0 Then $splashXVel *= -1 ;if our splash image hits an edge
;If $splashY >= $maxY Or $splashY <= 0 Then $splashYVel *= -1 ;reverse its velocity (can be buggy! ;))
If $splashX >= $maxX Then
$splashY = Int(Random(1,$maxY-400))
$splashX = -400;
EndIf
If $lock Then ;If we have a message to lock the computer
DllCallbackFree($stub_KeyProc) ;release our hooks
DllCallbackFree($stub_MouseProc)
_WinAPI_UnhookWindowsHookEx($keyboardHook)
_WinAPI_UnhookWindowsHookEx($mouseHook)
showTaskbar();
Run("rundll32.exe user32.dll,LockWorkStation") ;and lock the computer
Exit ;then exit the program :)
EndIf
Sleep(40)
WEnd
;/////////////////////////////////////////////////
Func hideTaskbar()
WinSetTrans("[Class:Shell_TrayWnd]", "", 0)
ControlHide('','', WinGetHandle("[CLASS:Button]"))
EndFunc
Func showTaskbar()
WinSetTrans("[Class:Shell_TrayWnd]", "", 255)
ControlShow('','', WinGetHandle("[CLASS:Button]"))
EndFunc
编辑:
关于 CTRL+ALT+DEL 组合键(或其他 Windows 组合键),请查看此链接以获取有关如何操作的信息禁用那些:
http://tamas.io/c-disable-ctrl-alt-del-alt-tab-alt-f4-start-menu-and-so-on/
关于c# - 即使主要被锁定,如何在扩展监视器中连续显示 Windows 窗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26413343/
出于纯粹的兴趣,我很好奇如何按顺序创建PI,而不是在过程结果之后生成数字,而是让数字在过程本身生成时显示。如果是这种情况,那么数字可以自行产生,我可以对以前看到的数字实现垃圾收集,从而创建一个无限系列。结果只是在Pi系列之后每秒生成一个数字。这是我通过互联网筛选的结果:这是流行的计算机友好算法,类机器算法:defarccot(x,unity)xpow=unity/xn=1sign=1sum=0loopdoterm=xpow/nbreakifterm==0sum+=sign*(xpow/n)xpow/=x*xn+=2sign=-signendsumenddefcalc_pi(digits
我需要在客户计算机上运行Ruby应用程序。通常需要几天才能完成(复制大备份文件)。问题是如果启用sleep,它会中断应用程序。否则,计算机将持续运行数周,直到我下次访问为止。有什么方法可以防止执行期间休眠并让Windows在执行后休眠吗?欢迎任何疯狂的想法;-) 最佳答案 Here建议使用SetThreadExecutionStateWinAPI函数,使应用程序能够通知系统它正在使用中,从而防止系统在应用程序运行时进入休眠状态或关闭显示。像这样的东西:require'Win32API'ES_AWAYMODE_REQUIRED=0x0
如何在buildr项目中使用Ruby?我在很多不同的项目中使用过Ruby、JRuby、Java和Clojure。我目前正在使用我的标准Ruby开发一个模拟应用程序,我想尝试使用Clojure后端(我确实喜欢功能代码)以及JRubygui和测试套件。我还可以看到在未来的不同项目中使用Scala作为后端。我想我要为我的项目尝试一下buildr(http://buildr.apache.org/),但我注意到buildr似乎没有设置为在项目中使用JRuby代码本身!这看起来有点傻,因为该工具旨在统一通用的JVM语言并且是在ruby中构建的。除了将输出的jar包含在一个独特的、仅限ruby
我正在使用的第三方API的文档状态:"[O]urAPIonlyacceptspaddedBase64encodedstrings."什么是“填充的Base64编码字符串”以及如何在Ruby中生成它们。下面的代码是我第一次尝试创建转换为Base64的JSON格式数据。xa=Base64.encode64(a.to_json) 最佳答案 他们说的padding其实就是Base64本身的一部分。它是末尾的“=”和“==”。Base64将3个字节的数据包编码为4个编码字符。所以如果你的输入数据有长度n和n%3=1=>"=="末尾用于填充n%
我正在编写一个包含C扩展的gem。通常当我写一个gem时,我会遵循TDD的过程,我会写一个失败的规范,然后处理代码直到它通过,等等......在“ext/mygem/mygem.c”中我的C扩展和在gemspec的“扩展”中配置的有效extconf.rb,如何运行我的规范并仍然加载我的C扩展?当我更改C代码时,我需要采取哪些步骤来重新编译代码?这可能是个愚蠢的问题,但是从我的gem的开发源代码树中输入“bundleinstall”不会构建任何native扩展。当我手动运行rubyext/mygem/extconf.rb时,我确实得到了一个Makefile(在整个项目的根目录中),然后当
exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby中使用两个参数异步运行exe吗?我已经尝试过ruby命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何rubygems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除
鉴于我有以下迁移:Sequel.migrationdoupdoalter_table:usersdoadd_column:is_admin,:default=>falseend#SequelrunsaDESCRIBEtablestatement,whenthemodelisloaded.#Atthispoint,itdoesnotknowthatusershaveais_adminflag.#Soitfails.@user=User.find(:email=>"admin@fancy-startup.example")@user.is_admin=true@user.save!ende
我已经从我的命令行中获得了一切,所以我可以运行rubymyfile并且它可以正常工作。但是当我尝试从sublime中运行它时,我得到了undefinedmethod`require_relative'formain:Object有人知道我的sublime设置中缺少什么吗?我正在使用OSX并安装了rvm。 最佳答案 或者,您可以只使用“require”,它应该可以正常工作。我认为“require_relative”仅适用于ruby1.9+ 关于ruby-主要:Objectwhenrun
我正在为一个项目制作一个简单的shell,我希望像在Bash中一样解析参数字符串。foobar"helloworld"fooz应该变成:["foo","bar","helloworld","fooz"]等等。到目前为止,我一直在使用CSV::parse_line,将列分隔符设置为""和.compact输出。问题是我现在必须选择是要支持单引号还是双引号。CSV不支持超过一个分隔符。Python有一个名为shlex的模块:>>>shlex.split("Test'helloworld'foo")['Test','helloworld','foo']>>>shlex.split('Test"
我实际上是在尝试使用RVM在我的OSX10.7.5上更新ruby,并在输入以下命令后:rvminstallruby我得到了以下回复:Searchingforbinaryrubies,thismighttakesometime.Checkingrequirementsforosx.Installingrequirementsforosx.Updatingsystem.......Errorrunning'requirements_osx_brew_update_systemruby-2.0.0-p247',pleaseread/Users/username/.rvm/log/138121