29 lines
		
	
	
		
			601 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			601 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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 VEPROMS
 | 
						|
{
 | 
						|
    public partial class dlgCheckOpenTabs : Form
 | 
						|
    {
 | 
						|
        public dlgCheckOpenTabs()
 | 
						|
        {
 | 
						|
            InitializeComponent();
 | 
						|
        }
 | 
						|
 | 
						|
        public bool Remember { get; set; } = false;
 | 
						|
 | 
						|
        private void btnTabs_Click(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            Remember = this.cbRemember.Checked;
 | 
						|
            this.Close();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |