c519147302
- Added Replace-Operation + UI - Added OperationMode to make it easier to give operations different modes - Replaced all specific-control-event-handlers with one general PropertyChanged-event-handler for each preview and filter - TODO: Add Remove-Operation as a subclass of Replace
12 lines
245 B
C#
12 lines
245 B
C#
namespace BFR.Operations
|
|
{
|
|
public class OperationMode
|
|
{
|
|
public int Index { get; }
|
|
public string Name { get; }
|
|
|
|
public OperationMode(int index, string name) =>
|
|
(Index, Name) = (index, name);
|
|
}
|
|
}
|