initial commit
This commit is contained in:
commit
1b60743303
274 changed files with 25866 additions and 0 deletions
24
Explorer/Events/CancelEventArgs`1.cs
Normal file
24
Explorer/Events/CancelEventArgs`1.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
// Decompiled with JetBrains decompiler
|
||||
// Type: GDRomExplorer.Events.CancelEventArgs`1
|
||||
// Assembly: GD-ROM Explorer, Version=1.6.3.0, Culture=neutral, PublicKeyToken=611be24fdeb07e08
|
||||
// MVID: B7A7D10A-9A63-4E9E-9840-D297E5FC2219
|
||||
// Assembly location: GD-ROM Explorer.exe
|
||||
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace GDRomExplorer.Events
|
||||
{
|
||||
public class CancelEventArgs<T> : CancelEventArgs, IEventArgs<T>
|
||||
{
|
||||
public CancelEventArgs(T value)
|
||||
: this(value, false)
|
||||
{
|
||||
}
|
||||
|
||||
public CancelEventArgs(T value, bool cancel)
|
||||
: base(cancel)
|
||||
=> this.Value = value;
|
||||
|
||||
public T Value { get; private set; }
|
||||
}
|
||||
}
|
21
Explorer/Events/ChangingData`1.cs
Normal file
21
Explorer/Events/ChangingData`1.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Decompiled with JetBrains decompiler
|
||||
// Type: GDRomExplorer.Events.ChangingData`1
|
||||
// Assembly: GD-ROM Explorer, Version=1.6.3.0, Culture=neutral, PublicKeyToken=611be24fdeb07e08
|
||||
// MVID: B7A7D10A-9A63-4E9E-9840-D297E5FC2219
|
||||
// Assembly location: GD-ROM Explorer.exe
|
||||
|
||||
namespace GDRomExplorer.Events
|
||||
{
|
||||
public class ChangingData<T>
|
||||
{
|
||||
public ChangingData(T oldData, T newData)
|
||||
{
|
||||
this.OldData = oldData;
|
||||
this.NewData = newData;
|
||||
}
|
||||
|
||||
public T OldData { get; private set; }
|
||||
|
||||
public T NewData { get; private set; }
|
||||
}
|
||||
}
|
17
Explorer/Events/EventArgs`1.cs
Normal file
17
Explorer/Events/EventArgs`1.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Decompiled with JetBrains decompiler
|
||||
// Type: GDRomExplorer.Events.EventArgs`1
|
||||
// Assembly: GD-ROM Explorer, Version=1.6.3.0, Culture=neutral, PublicKeyToken=611be24fdeb07e08
|
||||
// MVID: B7A7D10A-9A63-4E9E-9840-D297E5FC2219
|
||||
// Assembly location: GD-ROM Explorer.exe
|
||||
|
||||
using System;
|
||||
|
||||
namespace GDRomExplorer.Events
|
||||
{
|
||||
public class EventArgs<T> : EventArgs, IEventArgs<T>
|
||||
{
|
||||
public EventArgs(T value) => this.Value = value;
|
||||
|
||||
public T Value { get; private set; }
|
||||
}
|
||||
}
|
13
Explorer/Events/IEventArgs`1.cs
Normal file
13
Explorer/Events/IEventArgs`1.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
// Decompiled with JetBrains decompiler
|
||||
// Type: GDRomExplorer.Events.IEventArgs`1
|
||||
// Assembly: GD-ROM Explorer, Version=1.6.3.0, Culture=neutral, PublicKeyToken=611be24fdeb07e08
|
||||
// MVID: B7A7D10A-9A63-4E9E-9840-D297E5FC2219
|
||||
// Assembly location: GD-ROM Explorer.exe
|
||||
|
||||
namespace GDRomExplorer.Events
|
||||
{
|
||||
public interface IEventArgs<T>
|
||||
{
|
||||
T Value { get; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue