일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 업비트 c#
- c# 업비트
- c# 라이브 차트
- c# restapi 호출
- 나만의 사이트모음집
- Upbit API
- c# websocket
- WPF
- 즐겨찾기
- 라이브 차트
- upbit
- XAML
- Prism
- maui
- c# 업비트 api키 목록
- c# api호출
- 차트
- c# maui
- 업비트 API
- 업비트
- C#
- c# 차트
- Chart
- 업비트 차트
- c# restapi
- 북마크
- Today
- Total
목록전체 글 (130)
하아찡
CoinOrderViewModel.cs using Language; using Prism.Commands; using Prism.Events; using Prism.Mvvm; using PublicColor; using System; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Windows; using System.Windows.Media; using Upbit.Event; using Upbit.UpbitFunctions; namespace Upbit.ViewModels { public class CoinOrderViewModel : Binda..

선택된 코인을 매수 매도할때 사용 CoinOrder.xaml 매수 / 매도 / 주문내역 시장가 / 지정가 주문옵션 미체결 / 체결 미체결 / 체결 내역 큼직하게 Xaml코드만 분할해놨습니다. 각종 스타일 내용은 전체 코드를 살펴봐주세요.
UI쪽 컬러를 저장하고 불러와서 적용하는 방식을 사용하기위해 작업함. Colors.cs using FileIO; using Prism.Mvvm; using System; using System.Collections.Generic; using System.Security.Cryptography; using System.Windows.Media; namespace PublicColor { public class Colors : BindableBase { private static Colors colorinstance; public static Colors Colorinstance { get { if (colorinstance == null) colorinstance = new Colors(); return ..

코인 목록 불러옴. CoinList.xaml ALL KRW BTC USDT CoinListViewModel.cs using Language; using Prism.Commands; using Prism.Events; using Prism.Mvvm; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Threading.Tasks; using System.Timers; using System.Windows; using System.Windows.Controls;..

선택된 코인 호가창을 보여줌. 최대 10개까지로 설정했음. BidAskList.xaml DivByThreeConverter.cs using System; using System.Globalization; using System.Windows.Data; using System.Windows; namespace Upbit.Converter { public class DivByThreeConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is double width) { return width / 3.0; } return De..

등록된 UpbitAPI키의 잔고를 확인해 줌. 미리 보기 Balance.xaml API인증이 안 됐을 경우 API인증을 해달라고 띄워주는 TextBlock 평가손익 TotalPrice -> 현재가 * 현재보유량 Cost -> 평단가 * 현재보유량 MultiBinding을 사용해서 TotalPrice랑 Cost를 뺀 가격이 평가손익 SubConvert역할은 해당 두 데이터를 빼가지고 출력해 줌. SubConvert.cs using System; using System.Globalization; using System.Windows.Data; namespace Upbit.Converter { class SubConverter : IMultiValueConverter { public object Convert..