본문 바로가기 메뉴 바로가기

Mit

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Mit

검색하기 폼
  • 분류 전체보기 (149) N
    • Maui (7)
    • Xamarin (33)
    • WPF (48)
    • VBA (3)
    • C# WinForm (7)
    • ETC (46)
  • 방명록

분류 전체보기 (149)
Windows 10 UEFI 부팅을 위한 SSD GPT 초기화

기존 BIOS를 대체하는 새로운 UEFI 컴퓨터 펌웨어 지원 파티션(MBR --> GPT) 윈도우 설치 초기화면(설치, 복구) 에서 Shift + F10 키를 눌러 도스 커맨드 창으로 이동 (경고! 파티션 초기화로 SSD데이터가 모두 삭제됩니다.) 1. X: ~~ / diskpart : diskpart 명령어 입력 2. list DIST : 디스크 상태 확인 3. select disk 0 또는 1 : ( 설치하려는 디스크(용량큰) 선택) 4. clean : disk 초기화 5. convert gpt : gpt 파티션으로 포맷 6. exit : diskpart 닫기 7. 윈도우 10 설치 계속

ETC 2021. 6. 22. 13:42
Xamarin.Forms MultiView BindingContext Not Working

한페이지 Multiview BindingContext 구현은 View 한개에 두개의 모델을 넣으면 된다... BindingContext = new Page1_ViewModel(); public class Page1_ViewModel { public ObservableCollection Bind_Edu_List { get; private set; } public ObservableCollection Notices { get { return _Notices; } set { _Notices = value; OnPropertyChanged(); } } List source; public Page1_ViewModel() { // Binding 1 ----------- source = new List(); Coll..

Xamarin 2021. 6. 22. 13:20
Mysql Aes_Encrypt 쿼리 == C# Encrypt String(HEX)

Mysql Aes_Encrypt 쿼리 select HEX(AES_ENCRYPT('텍스트','비밀번호')); C# Encrypt String(HEX) private static string Encrypt(string _encryptString, string _passkey) { StringBuilder sbResult = new StringBuilder(); byte[] EncryptArray = UTF8Encoding.UTF8.GetBytes(_encryptString); RijndaelManaged Rdael = new RijndaelManaged(); Rdael.KeySize = 128; Rdael.BlockSize = 128; Rdael.Mode = CipherMode.CBC; Rdael.Paddi..

WPF 2021. 6. 14. 19:56
Mysql Aes_Decrypt 쿼리 == C# Decrypt String(HEX)

Mysql Aes_Decrypt 쿼리 select cast(AES_DECRYPT(unhex('암호텍스트'),'비밀번호') as char(100)) from log_member; ---------------------------------------------------------------------------------------------------- C# Decrypt String public static string Decrypt(string _decryptString, string _passkey) { RijndaelManaged Rdael = new RijndaelManaged(); Rdael.Mode = CipherMode.CBC; Rdael.Padding = PaddingMode.PKCS7..

WPF 2021. 6. 14. 19:40
Nginx .Net Core5 Mysql C# Connection (SslMode)

Nginx .Net Core5 Mysql Connection String static private MySqlConnection EDC_conn; static private string EDC_GetConnectionString() { return "Server=서버IP ; Port=3306; Database=log_in; Uid = 아이디; Pwd=비밀번호; SslMode=Required;"; } static private string member_search(Member_CHK Items) { try { string EDC_connectionString = EDC_GetConnectionString(); using (EDC_conn = new MySqlConnection(EDC_connectionSt..

ETC 2021. 6. 14. 11:40
systemctl start Test_API.service 실행후 오류 Warning: The unit file, source configuration file or drop-ins of Test_API.service changed on disk. Run 'systemctl daemon-reload' to reload units.

Warning: The unit file, source configuration file or drop-ins of Test_API.service changed on disk. Run 'systemctl daemon-reload' to reload units. => $ sudo systemctl daemon-reload daemon-reload 하고 다시 실행.

ETC 2021. 6. 10. 12:36
Ubuntu Unhandled exception. System.IO.IOException: Failed to bind to address http://127.0.0.1:5000: address already in use.

Ubuntu Unhandled exception. System.IO.IOException: Failed to bind to address http://127.0.0.1:5000: address already in use. 1. sudo netstat -tunip 2. port 5000 PID num 확인 3. sudo kill -9 27481 4. 서비스 재시작. ------------------ $ sudo netstat -tunlp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 4 0 127.0.0.1:5000 0.0.0.0:* LIS..

ETC 2021. 6. 9. 20:38
Nginx .net Core5 error: // warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3]

warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3] 환경: ubuntu 20.04 LTS/ Nginx8.0 / .net Core5 http api 서비스는 정상. https api는 warning 다만.. 서비스는 정상 info: Microsoft.Hosting.Lifetime[0] Now listening on: http://localhost:5000 info: Microsoft.Hosting.Lifetime[0] Application started. Press Ctrl+C to shut down. info: Microsoft.Hosting.Lifetime[0] Hosting environment: Production info: M..

ETC 2021. 6. 9. 19:23
Ubuntu 20.04 Nginx Certbot cert error

Certbot 에서 인증오류가 계속.. 인증받을 도메인의 홈 디렉토리에 폴더를 생성해 줬음. /var/www/html 에서 $ mkdir .well-known cd .well-known $ mkdir acme-challenge cd .. 그리고 certbot을 돌리니 정상실행. $ certbot certonly --webroot -w . -d api.mistic.co.kr

ETC 2021. 6. 8. 20:28
StackLayout Label Fit the size not working

Cause: When you add labels in stackLayout ,stackLayout will not make the subviews fit the size. Stacklayout에 배치된 Label Width는 AutoFit 되지 않네.. >> Stacklayout 쓰지 말자. --> Frame나 Grid 배치하자.. https://stackoverflow.com/questions/55788834/element-not-expanding-in-xamarin-forms

Xamarin 2021. 5. 28. 18:18
이전 1 ··· 4 5 6 7 8 9 10 ··· 15 다음
이전 다음
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • Xamarin.Forms
  • ssl_client_socket_impl.cc
  • Xamarin Firebase Phone User Add
  • Xamarin reCAPTCHA
  • GetCellContent CheckBox Value
  • 서버 수준의 URN 필터
  • ClickOnce 인증서 인증기간 변경
  • Entry '' has empty native path
  • Xamarin.Ios Firebase Phone Auth
  • C# LINQ Left join
  • FileStream Add Byte
  • WPF Datagrid Cell Value Change
  • Xamarin Firebase Phone Auth
  • c# Encrypt / Decrypt
  • Linux SSH Multi Computer Join
  • SkiaSharp
  • Xamarin.Ios Firebase Phone SMS OTP Send
  • WPF Scrollviewer in ScrollViwer
  • 연산자 뒤에 피연산자가 없습니다.
  • Xamarin.Ios Firebase Phone User Add
  • 암호 마스터키
  • WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
  • WPF Textbox
  • Label Text LineBreak in Xaml
  • Embeded 한글Font적용
  • Microcharts
  • Windows IIS FTP 디렉토리 목록 오류
  • Xamarin SMS OTP Send
more
«   2026/04   »
일 월 화 수 목 금 토
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바