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

Mit

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

Mit

검색하기 폼
  • 분류 전체보기 (143)
    • Maui (7)
    • Xamarin (33)
    • WPF (47)
    • VBA (3)
    • C# WinForm (7)
    • ETC (42)
  • 방명록

분류 전체보기 (143)
Label Text LineBreak in Xaml

Label Text LineBreak = " " 휴대폰에 인증된 대상이 여러명입니다. 아래 리스트에서 로그인할 대상을 선택해 주세요.

Xamarin 2021. 3. 23. 13:50
C# 암호화 Encrypt / Decrypt ( Aes 128, Salt 추가, 파일 Master key 8 Byte 삽입)

C# 암호화 / 복호화 Aes 128, Salt 추가, 파일 Master key 8 Byte 삽입) Aes 암호화된 파일앞에 userid Unicode로 삽입 복호화에서 파일앞 8바이트 userid를 확인하고 나머지는 MemoryStream에 저장 > 복호화 진행(비밀번호 Salt확인) point MemroyStream의 position이 마지막으로 가있으니 position을 처음으로 옮겨준다. Mstream.Position = 0; public static async Task EncryptFile(string inputFile, string outputFile) { try { UnicodeEncoding UE = new UnicodeEncoding(); byte[] key =UE.GetBytes(pas..

ETC 2021. 3. 18. 11:44
Grid Chidren.Add

var grid = new Grid (); grid.RowDefinitions.Add (new RowDefinition { Height = GridLength.Auto }); grid.RowDefinitions.Add (new RowDefinition { Height = new GridLength (1, GridUnitType.Star) }); var stacklayout1 = new StackLayout { HeightRequest = 100, BackgroundColor = Color.Red }; var stacklayout2 = new StackLayout { BackgroundColor = Color.Blue }; Grid.SetRow (stacklayout2, 1); grid.Children.A..

Xamarin 2021. 3. 15. 18:53
WPF StackPanel(Back Layer) in Button Click Enable

WPF StackPanel(Back Layer) in Button Click Enable Front Layer 에서 IsHitTestVisible = "False" Back Layer에서 IsHitTestVisible = "True"

WPF 2021. 3. 4. 10:58
2021.03.03 8.9.1651 update Apple SDK 를 찾지 못하는 현상

2021.03.03일 Visual Studio for Mac 8.9.1651 update Apple SDK 를 찾지 못하는 현상 기본설정 > SDK 위치 > Apple > 위치: /Application/Xcode.app/ 해결됨.ㅜㅜ developercommunity.visualstudio.com/t/vs-2019-mac-fails-to-find-xcode-12/1193691 Devcom2 Sorry this browser is no longer supported Please use any other modern browser like 'Microsoft Edge'. developercommunity.visualstudio.com Dear @Rainer Mager; Thanks

Xamarin 2021. 3. 4. 09:58
Xamarin.Forms Essentials Camera Stream To Byte then Using SkiaSharp Image Size Down

Xamarin.Forms Essentials Camera Stream To BMP >> SkiaSharp Use FileFormat Jpg or Png then Reduce File Size Down 카메라 이미지(Raw) Stream(15~18Mb) ->SkiaSharp BMP 파일 변환 -> SkiaSharp Jpg Encoding image (254Kb~1Mb) SkiaSharp 2.80.3 Bug: SKBitmap.Decode() == always null error // SKData encodedData = Simage.Encode(SKEncodedImageFormat.Jpeg, 100); async Task TakePhotoAsync() { try { if (!MediaPicker.IsCapt..

Xamarin 2021. 2. 14. 23:24
MS-Sql 오전, 오후 > 24시간 Convert DateTime, Try_Convert

오전 오후가 있는 Varchar 데이터를 DateTime으로 Convert Convert(datetime,stuff(insert_time ,11,3,'') + case right(left(insert_time,13),2) when '오전' then 'AM' else 'PM' end) ### Try_Convert 활용 ### 날짜 값이 아닌 데이터 조회 SELECT * FROM ( SELECT CASE WHEN Try_Convert(Datetime, (stuff(insert_time ,11,3,'') + case right(left(insert_time ,13),2) when '오전' then 'AM' else 'PM' end) ) is null THEN 'Error' ELSE insert_time END..

ETC 2021. 1. 27. 10:43
CarouselView CurrentItem Entry Item Text Approach

// Model ----------------------------------- public class SCH_Body { public string Dates { get; set; } public string gosi { get; set; } public string Schdule { get; set; } public string ChangeSch { get; set; } } // CarouselView Xaml -------------------------------------- // CS -------------------------------------------- async public void Button_Clicked(System.Object sender, System.EventArgs e) ..

Xamarin 2021. 1. 24. 16:18
미친짓을 3주간 했구나.

Curr_Select_Date3.Month.ToString() 01월이 아니라. 1월 이더구나..... 2021-01-05 => Month.ToStirng() != 01 이구나.. 1이다. 그러니.. 키가 20210105 가 아니라... 202115가 되버렸다.. key값이 에러니. 시풍......기초가 안되면 개고생이구나..ㅡㅡ; 기초부터 착실히 하자... -- CrossToastPopUp.Current.ShowToastMessage(Curr_Select_Date3.ToString("yyyyMMdd") + "2"); string keys = Curr_Select_Date3.ToString("yyyyMMdd") + "2"; CrossToastPopUp.Current.ShowToastMessage(Curr..

Xamarin 2021. 1. 5. 23:54
DatePicker Format String = 2020-12-29(화)

DatePicker Format String = 2020-12-29(화) Format ="yyyy/MM/dd(ddd)" -> 2020-12-29(화) Format="D" : LongDateString

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

Blog is powered by Tistory / Designed by Tistory

티스토리툴바