[c#] WPF에서 커서 변경 1. 커서 변경 시작 위치Application.Current.Dispatcher.Invoke(() =>{System.Windows.Input.Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;}); 2. 커서 복원 위치Application.Current.Dispatcher.Invoke(() =>{System.Windows.Input.Mouse.OverrideCursor = null;}); 기본카테고리 2020.12.10
[PHP] jQuery를 이용한 대기상태의 커서 변경 jQuery 를 이용하여대기상태의 커서를원하는 모양으로 변경한다. $( document).ready(function() { ... //////////////////////////////////////////// 대기상태의 커서변경// 커서의 위치를 중앙으로 변경하는 jQuery함수jQuery.fn.center = function () {this.css("position", "absolute");this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px".. 기본카테고리 2010.11.23