본문 바로가기
728x90
반응형

전체보기61

[로또번호배포][2024.01.15] 00. 시작 2024년도 첫 번째 사이드 프로젝트로 뭘 할지 생각해봤다. 2024년도 첫 번째 사이드 프로젝트인 만큼 최대한 가볍게 하고 싶었다. 그와중에 재미도 있고 내 일상과 관련 있으면 좋겠다는 생각을 많이 하게 되었다. 불현듯 머리속에서 로또 프로그램 제작 및 로또번호를 블로그(또는 유튜브)에 배포를 하면 좋겠다는 생각을 했다. 별일 없는 이상 매주 목요일에 제작한 프로그램을 실행하여 배포하려 한다. 두 가지의 방향으로 번호를 나누어 발행하려 한다. 1. 지금까지의 1등 번호를 분석하고 나름의 필터를 걸어서 나올 수 자체를 제한시켜 확률을 높이는 방향. 2. AI를 이용하여 이때까지 1등 번호를 분석하라 시키고 다음에 나올 수를 받는 방향. 오늘부터 프로그램 제작에 돌입하므로 이번주 목요일에는 제대로된 번호발.. 2024. 1. 15.
[Xamarin, c#, UWP] UWP, How to Disable Caret Browsing in code(key F7), Disable Cursor Browsing in uwp app uwp 앱에서 코딩을 하지않아도 F7 키를 누르면 위와 같은 메시지가 뜬다. 앱 내에서 keydown , keyup 이벤트를 써도 메시지가 뜬다. 하지만 Window.Current.Dispatcher.AcceleratorKeyActivated 이벤트를 받아서 handled = true로 해주면 메시지가 뜨기전에 키보드를 잡을 수 있다. If you press F7 even if you do not code in the uwp app, the above message appears. Even if you use keydown and keyup events within the app, a message appears. but If you receive the Window.Current.Dispatcher.A.. 2022. 10. 11.
[c#, Xamarin] Control(On/Off) Numlock Key in programmatically public static class ControlNumlock { [StructLayout(LayoutKind.Sequential)] public struct INPUT { internal int type; internal short wVk; internal short wScan; internal int dwFlags; internal int time; internal IntPtr dwExtraInfo; int dummy1; int dummy2; internal int type1; internal short wVk1; internal short wScan1; internal int dwFlags1; internal int time1; internal IntPtr dwExtraInfo1; int dummy.. 2022. 8. 12.
[Xamarin] KeyDownEvent fires twice on Android public override bool OnKeyDown([GeneratedEnum] Keycode keyCode, KeyEvent e) { base.OnKeyDown(keyCode, e); // work return true; } // or public override bool DispatchKeyEvent(KeyEvent e) { base.DispatchKeyEvent(e); // work if (e.Action == KeyEventActions.Up) { KeyEventClass.CurrentHandler?.OnKeyUpEvent(e.ScanCode); } return true; } If you don't turn on the number lock, there are times when Android.. 2022. 8. 10.
[UWP] 풀스크린 모드로 변경 및 풀스크린 모드(FullScreen & Mode) ApplicationView.GetForCurrentView().FullScreenSystemOverlayMode = FullScreenSystemOverlayMode.Minimal; ApplicationView.GetForCurrentView().FullScreenSystemOverlayMode = FullScreenSystemOverlayMode.Standard; ApplicationView.GetForCurrentView().TryEnterFullScreenMode(); 전체 화면 모드에서 앱이 에지 제스처에 응답하는 방법을 지정하는 상수 ApplicationView.GetForCurrentView().TryEnterFullScreenMode(); 화면을 풀스크린 모드로 변경 FullScreenSy.. 2022. 6. 7.
20220517) 간단하게 보는 비트코인 관점 ----------------------------------------------------------------------------------------------------------------------------------- 바이낸스 할인 레퍼럴 Log In | Binance login-description accounts.binance.com ----------------------------------------------------------------------------------------------------------------------------------- 1. 시장 저번 관점대로 반등시 매도 포지션으로 가져갔고 한달간 어느정도 수익을 가져옴. 최근 저점과 그 전 저점에서 .. 2022. 5. 17.
20220418) 간단하게 보는 비트코인 관점 ----------------------------------------------------------------------------------------------------------------------------------- 바이낸스 할인 레퍼럴 Log In | Binance login-description accounts.binance.com ----------------------------------------------------------------------------------------------------------------------------------- 1. 시장 2022년 3월 29일부터 시작된 하락. 4월 11일 42000부근에서 멈춰줬으면 하는 하락이 강한 매도세로.. 2022. 4. 18.
[Winform, c#] 리소스에 있는 이미지 로드 1. 프로젝트에 Resources 폴더생성 2. 쓸 이미지를 드래그드롭으로 프로젝트 생성한 폴더에 넣기 3. 속성에서 '빌드 작업'을 '포함리소스' 로 변경 4. Resources 폴더에 있는 이미지를 프로젝트 Properties - Resources.resx를 클릭하여 뜨는 창에 드래그드롭 5. cs파일에서 사용( picturebox.Image = Resources.image; ) 2022. 1. 27.
[Xamarin] How to open another app with data Xamarin] How to open another app. [Xamarin] How to open another app. How to open another app in Xamarin. Use PackageManager in ~.Android project [assembly: Xamarin.Forms.Dependency(typeof(AppLinkService))] namespace MyApp.Droid.Service { public class AppLinkService :.. something-is-code.tistory.com [assembly: Xamarin.Forms.Dependency(typeof(AppLinkService))] namespace MyApp.Droid.Service { publi.. 2021. 12. 22.
728x90
반응형