Giter Site home page Giter Site logo

fimwomanager's Introduction

1. 기본 화면

  • 2023.05.15 ~ 2023.05.21에 생산 대기중,생산중,생산완료된 제품들을 DataGrid에 출력

화면 캡처 2023-11-02 044850

2. UserControl

$\bf{\rm{\color{#5ad7b7}2.1\ Textbox}}$

- 규격코드 등록에서 새로운 제품을 등록하거나 수정할때 생산성을 입력할때
  1. 천자리가 넘어가면 ','가 생겨야함
  2. 소수점은 3자리 고정
  3. 정수 부분을 입력하고 오른쪽 화살표 키를 누르면 소수자리로 이동
  4. 정수 자리수는 8자리가 최대
  • 이 조건을 모두 충족하기 위해서 따로 UserControl로 Textbox를 구현했습니다.

      <local:DotTextboxUserControl x:Name="Capacity_TextBox" Height="20" Margin="462,344,84,14" />
    
UserControl.TextBox.2.mp4

$\bf{\rm{\color{#5ad7b7}2.2\ DatePicker}}$

1. Year Textbox에서 4자리가 넘어가면 리셋 2. Tab키를 누르면 Year, Month, Day Textbox 순으로 넘어감 3. Month Textbox = 12 이상 입력하면 리셋 4. Day Textbox = 달에 따라 일 입력 적용
Year.Month.Day.mp4
  1. DatePicker에 Today Button 생성
DatePicker.Button.mp4

$\bf{\rm{\color{#5ad7b7}2.3\ TimePicker}}$

TimePicker.mp4

3. LabelPrint 출력

LabelPrint

4. TreeView (ObservableCollection)

public class MenuItem
{
    public MenuItem()
    {
        this.Items = new ObservableCollection<MenuItem>();
    }

    public string Title { get; set; }

    public ObservableCollection<MenuItem> Items { get; set; }
}

5. Delegate (DataPassEventHandler)

pcs.DataPassProdCd += new ProdClassSystem.DataPassProdCdEventHandler(ProdCdReceiveData);
TreeView.DataPassProdCdEventHandler.mp4

fimwomanager's People

Contributors

juseounghyun avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.