-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add "FULL" form of project. * Add "Remove Expand Form" and "Closing Form Warning Dialog" for "FULL" form of project. ---Note---- | None of backend code are add into project | * Complete the project before 00:00 - 27/10/2023.
- Loading branch information
Showing
24 changed files
with
2,457 additions
and
182 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
DXApplication1/MemUpdate.Designer.cs → ...lication1/ChildForm/MemUpdate.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
13 changes: 7 additions & 6 deletions
13
DXApplication1/MemView.Designer.cs → DXApplication1/ChildForm/MemView.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using DevExpress.XtraEditors; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace DXApplication1 | ||
{ | ||
public partial class MemView : DevExpress.XtraEditors.XtraForm | ||
{ | ||
public MemView() | ||
{ | ||
InitializeComponent(); | ||
this.MaximizeBox = false; //Tắt chức năng phóng to form | ||
} | ||
|
||
private void MemView_FormClosing(object sender, FormClosingEventArgs e) | ||
{ | ||
System.Windows.Forms.DialogResult result = System.Windows.Forms.MessageBox.Show("Bạn có muốn thoát không?", "Xác nhận thoát", System.Windows.Forms.MessageBoxButtons.YesNo); | ||
if (result == System.Windows.Forms.DialogResult.No) | ||
{ | ||
e.Cancel = true; | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.