[wpf/c#] 페이드 인 아웃 이펙트 구현 #스토리보드 생성 #스토리보드 정의 후 기능 실행 -fadeInOut() 실행 -fadeOut 후 fadeIn 실행 Storyboard fadein; Storyboard fadeout; void Init() { fadein = FindResource("Fadein") as Storyboard; fadeout = FindResource("Fadeout") as Storyboard; this.fadeout.Completed += Fadeout_Completed; //까매지는거 fadetimer.Interval = TimeSpan.FromSeconds(2); fadetimer.Tick += fadetimer_Tick; } private void Fadeout_Com..
[wpf/c#] vlc player 개발 및 라이브러리 사용법 #패키지 추가 -Vlc.DotNet.Wpf -Vlc.DotNet.Core #Control 추가 Xaml # c# 초기화 public VlcMediaPlayer video; void InitVlc() { var currentAssembly = Assembly.GetEntryAssembly(); var currentDirectory = new FileInfo(currentAssembly.Location).DirectoryName; var libDirectory = new DirectoryInfo(System.IO.Path.Combine(currentDirectory, "libvlc", IntPtr.Size == 4 ? "win-x86" : "wi..
[unity/c#/wpf] 파일로 텍스트/로그 쓰기 #사용 void Update() { if(Input.GetKeyUp("a")){ WriteTxt(@"c:\donwload\a.text", "hello"); } } #구현 void WriteTxt(string filePath, string message) { DirectoryInfo directoryInfo = new DirectoryInfo(Path.GetDirectoryName(filePath)); if (!directoryInfo.Exists) { directoryInfo.Create(); } FileStream fileStream = new FileStream(filePath, FileMode.Append, FileAccess.Write); Str..
크롬 전체화면 / 키오스크모드를 이용한 데스크탑 모드 크롬환경에서 더이상 이전같은 키오스크모드를 지원하지 않는다, 그렇기때문에 크로미움을 활용하여 대체하였다 https://chromium.woolyss.com/ Download latest stable Chromium binaries (64-bit and 32-bit) Download latest stable Chromium binaries for Windows, Mac, Linux, BSD and Android (64-bit and 32-bit) chromium.woolyss.com 여기서 가능한 최신 설치버전을 다운받는다(Installer) 창 속성으로 이동하여 다음 내용을 추가해준다 # --kiosk --app=(경로) C:\Users\user\Ap..
[nas/시놀로지]시놀로지 NAS 서버 하드 추가하기(DS2419+) shr활용 https://gofogo.tistory.com/195 [nas/시놀로지]시놀로지 NAS 서버 안끄고 하드 교체하기 핫스왑(hot swap) [nas/시놀로지]시놀로지 NAS 서버 안끄고 하드 교체하기 핫스왑(hot swap) 시놀로지 나스에서 핫스왑을 이용하면 서버종료를 하지 않고, 하로 하드를 교체할 수 있다 https://kb.synology.com/ko-kr/search gofogo.tistory.com 이전 블로그를 통하여, 하드를 교체하였다면, https://kb.synology.com/ko-kr/DSM/tutorial/Which_models_have_limited_support_for_Synology_Hybrid..
[nas/시놀로지]시놀로지 NAS 서버 안끄고 하드 교체하기 핫스왑(hot swap) 시놀로지 나스에서 핫스왑을 이용하면 서버종료를 하지 않고, 하로 하드를 교체할 수 있다 https://kb.synology.com/ko-kr/search?sources%5B%5D=hardware_specification Synology 지식 센터 kb.synology.com 위 데이터 시트를 통하여 지원 여부를 확인 할 수 있다 #nas #hot swap #핫 스와핑 #하드교체
[javascript/html] 이미지 시퀀스 플레이어 개선 버전(pre load 등)(드래그버전, 휠버전 포함) https://css-tricks.com/lets-make-one-of-those-fancy-scrolling-animations-used-on-apple-product-pages/ Let's Make One of Those Fancy Scrolling Animations Used on Apple Product Pages | CSS-Tricks Apple is well-known for the sleek animations on their product pages. For example, as you scroll down the page products may slide into view, ..