Advertisement
HenX

ItemTemplate

Jan 17th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace Prosystem.Nadas.Trade.UI.Forms.User
  12. {
  13.     public partial class UserEFListForm : EFListFormBase<UserEFListUI, UserBOUI, UserBO, UserEFForm>
  14.     {
  15.         public UserEFListForm()
  16.             : base()
  17.         {
  18.             InitializeComponent();
  19.         }
  20.  
  21.         public UserEFListForm(UserEFListUI list)
  22.             : base(new EFListFormInitParams {
  23.                 FormText = "Uživatelé",
  24.                 FilterGroupBoxHeight = 30
  25.             }, list)
  26.         {
  27.             InitializeComponent();
  28.         }
  29.  
  30.         protected override void PairFilters()
  31.         {
  32.          
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement