FormFire 1.0.0.1

dotnet add package FormFire --version 1.0.0.1
NuGet\Install-Package FormFire -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FormFire" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FormFire --version 1.0.0.1
#r "nuget: FormFire, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FormFire as a Cake Addin
#addin nuget:?package=FormFire&version=1.0.0.1

// Install FormFire as a Cake Tool
#tool nuget:?package=FormFire&version=1.0.0.1

Chat

Dont waste your time for managing forms.

Easy to use for create / show / hide or access to your forms, everywhere in your application.

Supports for multiple form types (Form, XtraForm, etc..)

First Generic T is at manager for your base form class, could be System.Windows.Forms.Form or XtraForm or etc.. Second Generic T is target form class for void operations.

In your Application main void you can open your main form with or without close prompt.

static void Main()
{
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);

    FormFireManager<Form>.Instance.OpenMainForm<SampleForm>();
    // or
    FormFireManager<Form>.Instance.OpenMainFormWithClosePrompt<SampleForm>("Are you sure for close this application", "FormFire.Examples");

    Application.Run();
}

You can still access the same instance of FormFireManager and open another form with or without single instance.

private void SampleForm_Load(object sender, EventArgs e)
{
    FormFireManager<Form>.Instance.OpenSingleForm<AnotherSampleForm>();
}

Everywhere in your application you can access to your pre opened forms at the manager.

private void button1_Click(object sender, EventArgs e)
{
    FormFireManager<Form>.Instance.GetForms<SampleForm>().FirstOrDefault().Form<SampleForm>().Hide();
}
Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.1 881 8/24/2018