24 lines
450 B
C#
24 lines
450 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TBF.UiControls
|
|
{
|
|
interface ITabWithListViewEx
|
|
{
|
|
void Unlock();
|
|
void OkBtnClicked();
|
|
void CancelBtnClicked();
|
|
void AddOne();
|
|
void RemoveSelected();
|
|
void MoveUpSelected();
|
|
void MoveDownSelected();
|
|
string GetWarningsBeforeSaving();
|
|
void UpdateRelatedItems();
|
|
}
|
|
}
|