All Projects → zjxi → HospitalManagementSystem-WPF

zjxi / HospitalManagementSystem-WPF

Licence: Apache-2.0 License
A hospital information management system based on WPF. 医疗信息管理系统,基于WPF (XAML前端+C#后台),内附SQL Server 2012数据库,界面友好,功能实用。

Programming Languages

C#
18002 projects

Labels

Projects that are alternatives of or similar to HospitalManagementSystem-WPF

wpf-demos
This repository contains the samples for Syncfusion WPF UI Controls and File Format libraries and the guide to use them.
Stars: ✭ 128 (+58.02%)
Mutual labels:  xaml, wpf
XamlIslands
Repository with several XAML Islands v1 samples (Win32, WPF, and WinForms) to demonstrate how to use it.
Stars: ✭ 47 (-41.98%)
Mutual labels:  xaml, wpf
ReactiveValidation
A small validation library for WPF and Avalonia which uses a fluent interface and allows display messages near controls in GUI with MVVM
Stars: ✭ 50 (-38.27%)
Mutual labels:  xaml, wpf
SpicyTaco.AutoGrid
A magical replacement for the built in WPF Grid and StackPanel
Stars: ✭ 67 (-17.28%)
Mutual labels:  xaml, wpf
WpfExtensions
Some syntactic sugar for Wpf development.
Stars: ✭ 128 (+58.02%)
Mutual labels:  xaml, wpf
IconPacks.Browser
The Browser for all available Icon packages from MahApps.Metro.IconPacks
Stars: ✭ 74 (-8.64%)
Mutual labels:  xaml, wpf
Displaying-XAML
This library is for display the XAML code of theme library for WPF (e.g. MaterialDesignInXamlToolkit)
Stars: ✭ 38 (-53.09%)
Mutual labels:  xaml, wpf
Wpftoolkit
All the controls missing in WPF. Over 1 million downloads.
Stars: ✭ 2,970 (+3566.67%)
Mutual labels:  xaml, wpf
FriendEditor
A WPF sample app to demonstrate how to use MVVM design pattern and MVVMLight toolkit
Stars: ✭ 38 (-53.09%)
Mutual labels:  xaml, wpf
Taskban
A personal productivity tool developed with C# and XAML.
Stars: ✭ 56 (-30.86%)
Mutual labels:  xaml, wpf
FileRenamerDiff
A File Renamer App featuring a difference display before and after the change.
Stars: ✭ 32 (-60.49%)
Mutual labels:  xaml, wpf
WindowsCommunityToolkit
The Windows Community Toolkit is a collection of helpers, extensions, and custom controls. It simplifies and demonstrates common developer tasks building UWP and .NET apps for Windows 10 and Windows 11. The toolkit is part of the .NET Foundation.
Stars: ✭ 4,934 (+5991.36%)
Mutual labels:  xaml, wpf
Toast
🍞 The rounded and animated Android Toast for .NET WPF/XAML
Stars: ✭ 25 (-69.14%)
Mutual labels:  xaml, wpf
AdminRunasMenu
A WPF menu driven by powershell to perform administrator functions
Stars: ✭ 26 (-67.9%)
Mutual labels:  xaml, wpf
MahApps.Metro.netcoreapp30
.NET Core 3.1 MahApps.Metro sample
Stars: ✭ 15 (-81.48%)
Mutual labels:  xaml, wpf
SharpDiskSweeper
Reveal outstanding files or folders that are eating up your disk space
Stars: ✭ 21 (-74.07%)
Mutual labels:  xaml, wpf
Code Samples
Just some code samples for MahApps and other experiments...
Stars: ✭ 205 (+153.09%)
Mutual labels:  xaml, wpf
Handycontrol
Contains some simple and commonly used WPF controls
Stars: ✭ 3,349 (+4034.57%)
Mutual labels:  xaml, wpf
SimpleDialogs
💬 A simple framework to help displaying dialogs on a WPF app
Stars: ✭ 24 (-70.37%)
Mutual labels:  xaml, wpf
mvvmgen
MvvmGen is a lightweight MVVM library for XAML applications. It generates your ViewModels on-the-fly for you via a Roslyn-based C# Source Generator.
Stars: ✭ 179 (+120.99%)
Mutual labels:  xaml, wpf

License .net platform stars forks

Overview | 项目概述

  • 该系统具备常见医疗流程,并可以完成患者和医生信息的输入,存储,修改,查询,删除等功能。 每个医生都有自己的密码,有人可以更改数据,有人无法修改,只能查看。 同时,数据也有一定的维护,当患者突然生病时,医生可以通过IC卡及时了解患者的病情。 并给予一定的治疗,同时处方药银行也将根据医生的处方开处方,方便患者就医,吃药。
  • 默认管理员登陆用户名和密码均为admin

若此项目对您有帮助,欢迎star和fork。 作者开发不易,打赏给点底气,以便维持生计。

Installation | 下载安装项目

$ git clone https://github.com/ElecRex/HospitalManagementSystem-WPF.git
$ cd HospitalManagementSystem-WPF

Requirements

  • Visual Studio 2017

  • .NET Framework 4.6.1

  • SQL Server 2012 / MSSQL LocalDB

Architecture | 系统架构

|__HospitalInfomationManagementSystem
  |
  |__ClassLiberty
  |         |_____Model
  |         |_____DAL
  |         |_____BLL
  |__UI
  |
  |__Database

Database configuration | 数据库路径配置

./UI/App.config配置文件中的appSettings,设置已提供的数据库hospitals.mdf的连接路径, 默认为相对路径

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
    </startup>
  <appSettings>
    <add key="strCon" value="server=(localdb)\MSSQLLocalDB;Integrated Security=true;AttachDbFileName=|DataDirectory|\hospitals.mdf" />
  </appSettings>
</configuration>

Screenshot | 界面展示及功能简介

登陆界面

系统管理

SysManUI.png

  • 挂号单设置

    RegDesignUI.png

  • 科室科别添加

    SecUI.png

  • 科室信息修改

    SecReviseUI.png

  • 员工添加

    StaffAddUI.png

  • 权限管理

    AutManUI.png

门诊医生

  • 选病人

    ChoosePantientUI.png

  • 写病例

    MediRecUI.png

  • 开药

    DishDrugUI.png

门诊管理

  • 病人挂号

    PatientRegUI.png

  • 医疗卡办理

    CardRegUI.png

门诊收费

ChargeUI.png

住院管理

  • 病房查看

    RoomCheckUI.png

  • 病房添加

    BedAddUI.png

  • 住院登记

    RoomRegUI.png

  • 付款查看

    CashCheckUI.png

  • 病人查找

    PatientFindUI.png

  • 费用记账

    FareRegUI.png

  • 出院结算

    DischargSettlementUI.png

药房管理

  • 查看检药单

    DrugCheckUI.png

  • 查看已发药品

    part6_2.png

药库管理

DrugstoreUI.png

财务管理

FinaManUI.png

License

  • Apache 2.0
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].