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

Future Of DotNet

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

Future Of DotNet

검색하기 폼
  • List All (656) N
    • Entity Framework Core (9)
    • .NET 5 and .NET Conf 2020 (10) N
    • Uno Platform (14)
    • Visual Studio (12)
    • Blazor (2)
    • Windows App(Universal App) (111)
      • Windows IoT & UWP (9)
      • Diablo3Hub (2)
      • OneSearch (5)
      • Beginner (66)
      • Expert (15)
      • Reactive extensions (7)
      • Errors (2)
    • Xamarin Forms (4)
    • Bot Framework (19)
    • Azure (10)
      • Azure App Service (9)
      • Azure Storage Service (0)
      • Azure IoT Hub (0)
    • Windows 10 (53)
      • News (20)
    • WPF (7)
    • Facebook News & Tips (158)
    • Windows 8&8.1 (113)
      • Screenshot AutoCut (3)
      • Korea Tour (4)
      • Sample&Tip 8.1 (10)
      • SkySearch (13)
      • Korea Bus Information (14)
      • Korea Tour Guide (3)
      • KMusic Player (7)
      • Samples (26)
      • Study (10)
      • ETC (18)
    • Windows Phone 8 (42)
      • Korea Bus Information (23)
      • AutoLogin (4)
      • Samples (11)
      • ETC (3)
    • Silverlight (37)
      • Free Board Project (16)
      • Samples (1)
      • WCF RIA Service (10)
      • Prism MEF Cont. (2)
      • ETC (8)
    • HTML5 & MVC4 (16)
    • Portable Class Library (2)
    • Uncategorised Tips and Tricks (3)
    • Kinect for Windows (2)
    • ETC (13)
    • kaki104 Scrap (4)
    • App News (13)
  • 방명록

Windows 8&8.1 (113)
SelectedItems 바인딩 Behavior(Update)

GridView, ListView에 있는 SelectedItems 프로퍼티는 바인딩이 되지 않는다. 그래서, 바인딩 가능한 Behavior를 만들어 보았다. Windows 8.1 Moden App에서 테스트를 했는데, Windwos 8에서도 가능하리라 생각된다. 참고 포스트 Behaviors in Windows 8.1 Store Apps http://www.julmar.com/blog/programming/behaviors-in-windows-8-1-store-apps/ 1. Behavior(08-05-2015 update) public class SelectedItemsBehavior : DependencyObject, IBehavior { /// /// 비헤이비어에 붙어있는 프로퍼티 /// publi..

Windows 8&8.1/Sample&Tip 8.1 2015. 8. 5. 10:18
MTProto Mobile Protocol 번역 중

MTProto Mobile Protocol https://core.telegram.org/mtproto General Description 이 프로토콜은 모바일 디바이스에서 서버로 접근하는 API로 디자인 되었다. 웹 브라우저에서 사용하는 것이 아님을 강조한다. 이 프로토콜은 3개의 독립된 컴포넌트로 세분화 되어 있다. . 하이레벨 컴포넌트(API query language) : API쿼리와 메시지가 바이너리로 변환된 내용이 정의 되어 있다. . 암호화 계층(인증) : 전송되기 전에 암호화된 메시지의 내용이 정의 되어 있다. . 전송 컴포넌트 : 클라이언트와 서버간의 전송을 위해 다른 기존의 네트워크 프로토콜(예: http, https, tcp, udp)에 대한 내용이 정의되어 있다. 노트 1: 일반 텍..

Windows 8&8.1/ETC 2014. 6. 3. 16:31
디아블로3 아이템 자랑은 Screenshot AutoCut로!

디아블로3 아이템 자랑은 Screenshot AutoCut로! 앤유 사이트에 올라온 기사 스크랩 입니다. http://www.nyou.kr/%eb%94%94%ec%95%84%eb%b8%94%eb%a1%9c3-%ec%95%84%ec%9d%b4%ed%85%9c-%ec%9e%90%eb%9e%91%ec%9d%80-screenshot-autocut%eb%a1%9c/

Windows 8&8.1/Screenshot AutoCut 2014. 5. 15. 19:16
Image Note

간단하게 이미지의 스케일을 변경한다. Bound와 Flip 등의 기능이 가능, 예제에서 찾아서 남김 private async void OnDeferredImageRequestedHandler(DataProviderRequest providerRequest, StorageFile imageFile) { // In this delegate we provide updated Bitmap data using delayed rendering. if (imageFile != null) { // If the delegate is calling any asynchronous operations it needs to acquire the deferral first. This lets the // system know t..

Windows 8&8.1/ETC 2014. 5. 12. 23:53
Windows Store Apps, Error: The certificate specified has expired

오래전에 올렸던 앱을 다시 빌드해서 스토어에 올릴려고 하는데 오류가 발생했다. Windows Store Apps, Error: The certificate specified has expired 구글에서 아래 블로그의 내용을 찾았다. http://mark.mymonster.nl/2013/10/07/windows-store-apps-error-the-certificate-specified-has-expired 위의 내용대로 따라하기를 했으나, 약간의 오류가 더 있어서 찾아보니 Publisher 이름이 틀리다고 나온다. 이미 배포가 된 앱이였기 때문에 앱 스토어에 올릴때 사용했던 이름을 사용해야 한다. Publisher Common Name 입력하는 부분에 스토어에 등록되어 있는 나의 Publisher Na..

Windows 8&8.1 2014. 5. 6. 16:39
DynamicObject를 이용한 DynamicResource 사용

리소스를 이용해서 문자열 작업할 때 사용하는 방법이다. 1. DynamicResource /// /// 다이나믹 리소스 /// public class DynamicResource : DynamicObject { /// /// 윈도우 리소스로더 /// Windows.ApplicationModel.Resources.ResourceLoader _rl; /// /// 리소스 전체 이름 /// public string ResourceName { get; set; } /// /// 이름으로 호출 /// /// /// /// public override bool TryGetMember(GetMemberBinder binder, out object result) { string str = string.Empty; if..

Windows 8&8.1 2014. 4. 24. 23:01
Windows 8 app add advertising by AdDuplex

앱 개발 후 수익 모델로 가장 쉽게 사용할 수 있는 것이 광고를 추가하는 방법이다. 이 포스트에서 간단하게 내가 사용하고 있는 광고 종류와 붙이는 방법에 대해서 간단히 설명하도록 하겠다. 1. AdDuplex http://adduplex.com/ 기본 컨셉은 내 앱에서 다른 앱 광고를 해주고, 다른 앱에서 내 앱을 광고해주는 앱 광고를 서로 나누면서, 다운로드 수를 올리기 위해 사용된다. 가입 후 새로운 앱을 등록하면 아래와 같은 화면이 나온다. 위에서 App ID가 앱에서 입력해야하는 코드이다. 보안상 코드값은 삭제했다. 단계별로 어떻게 해야하는지 정리가 되어있기 때문에 그대로 따라하면 된다. 1. Add app title : 앱 제목과 기본 광고 문구를 입력한다. 2. Create a banner :..

Windows 8&8.1/Sample&Tip 8.1 2014. 4. 19. 13:59
Screenshot AutoCut Privacy Policy

Screenshot AutoCut Privacy Policy KakiSoft's privacy policy guide We do not store any of your personal information. Favorite folder and item image information is stored only in Windows 8 local storage. Diablo III, Diablo III Reaper of Souls is is a registered trademark of Blizzard Entertainment, and some images are copyright of Blizzard Entertainment, Inc. Thank you for your visit kaki104

Windows 8&8.1/Screenshot AutoCut 2014. 4. 17. 23:33
Screenshot AutoCut Help

Screenshot AutoCut Diablo 3 gameplay in "The Legend items" when you pick up, you are proud of this one in order to save the screen shot, you run the Paint program and recall it, the item selection part, copy, and store after use the. However, this app allows users to save the "screenshot" of the item is automatically locate the part, cut, showing a list of items, and then save the selected item,..

Windows 8&8.1/Screenshot AutoCut 2014. 4. 17. 22:23
문자열로 Type 오브젝트 인스턴스 시키기 (Instantiate a System.Type from a type definition string)

참고 Instantiate a System.Type from a type definition string http://stackoverflow.com/questions/13842173/instantiate-a-system-type-from-a-type-definition-string 앱을 개발하기 위해 CrossPlatform이라는 라이브러리 프로젝트를 사용하는데, 이런 경우 스트링으로 인스턴스를 시켜야 하는 경우가 많이 있다. 일반적으로는 Type t = Type.GetType(typeName, false); object result = null; if(t != null) result = Activator.CreateInstance(t); 위의 문장으로 처리가 되지만, 이 문장이 동작하기 위한 선결 조..

Windows 8&8.1/Sample&Tip 8.1 2014. 4. 15. 21:55
이전 1 2 3 4 ··· 12 다음
이전 다음
공지사항
  • 2020-2021 Microsoft MV⋯
  • Microsoft MVP 2019-202⋯
  • 2018 - 2019 MVP 갱신 완료
  • 2017-2018 MVP 갱신 성⋯
  • 블로그 2016년 결산
최근에 올라온 글
  • Action<T>? Func<TResult>?
  • What’s next for System.⋯
  • Xamarin.Forms 프로젝트에⋯
  • .NET Conf 2021 x Seoul
최근에 달린 댓글
  • 위에 링크에있는 소스로 작업⋯
  • 이 프로젝트는 지금 16.9 pre⋯
  • MP를 모두 MVVM으로 변경했습⋯
  • 본문의 MP가 MVVM Pattern을⋯
Total
577,480
Today
127
Yesterday
97
링크
  • FusionWiz의 스토리
  • Jeremy Likness
  • Jerry Nixon
  • Tim Heuer
  • Diederik Krols
  • Pete D
  • Lunar Frog Software
  • Iris Classon
  • Richard's Blog
  • ScottGu's blog
  • Scott Hanselman's blog
  • Fear and Loating blog
  • Rags(누더기)
  • 나나의 블로그
  • Ryu School
  • kodatt
  • Pragmatic Programmer
  • Be MODERN with Windows
  • 닷넷(.NET) 프로그래머 모임
  • XAML or HTML 권영철 MVP
  • 골드러쉬와 함께하는 Hello C#
TAG
  • uno platform
  • entity framework core
  • Microsoft
  • Build 2016
  • dotNETconf
  • IOT
  • uno-platform
  • WebView
  • XAML
  • Bot Framework
  • iot core
  • Windows 10
  • PRISM
  • #Windows Template Studio
  • Android
  • #uwp
  • .net 5.0
  • Cross-platform
  • ef core
  • wasm
  • WPF
  • #MVVM
  • C#
  • MVVM
  • xamarin forms
  • #prism
  • UWP
  • visual studio 2019
  • LINQ
  • #XAML
more
«   2021/01   »
일 월 화 수 목 금 토
          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            
글 보관함
  • 2021/01 (13)
  • 2020/12 (16)
  • 2020/11 (5)
  • 2020/10 (2)
  • 2020/08 (4)

Blog is powered by Tistory / Designed by Tistory

티스토리툴바