Używam MDI całkiem sporo, podoba mi się to bardziej (tam, gdzie można go używać) niż wiele form pływających.
Ale aby czerpać z tego jak najwięcej, musisz poradzić sobie z własnymi wydarzeniami. Ułatwia ci to życie.
Przykład szkieletu.
Posiadaj własne typy przerwań,
//Clock, Stock and Accoubts represent the actual forms in
//the MDI application. When I have multiple copies of a form
//I also give them an ID, at the time they are created, then
//include that ID in the Args class.
public enum InteruptSource
{
IS_CLOCK = 0, IS_STOCKS, IS_ACCOUNTS
}
//This particular event type is time based,
//but you can add others to it, such as document
//based.
public enum EVInterupts
{
CI_NEWDAY = 0, CI_NEWMONTH, CI_NEWYEAR, CI_PAYDAY, CI_STOCKPAYOUT,
CI_STOCKIN, DO_NEWEMAIL, DO_SAVETOARCHIVE
}
Następnie twój własny typ Args
public class ControlArgs
{
//MDI form source
public InteruptSource source { get; set; }
//Interrupt type
public EVInterupts clockInt { get; set; }
//in this case only a date is needed
//but normally I include optional data (as if a C UNION type)
//the form that responds to the event decides if
//the data is for it.
public DateTime date { get; set; }
//CI_STOCKIN
public StockClass inStock { get; set; }
}
Następnie użyj delegata w przestrzeni nazw, ale poza klasą
namespace MyApplication
{
public delegate void StoreHandler(object sender, ControlArgs e);
public partial class Form1 : Form
{
//your main form
}
Teraz albo ręcznie, albo za pomocą GUI, poproś MDIparent o reakcję na formularze potomne.
Ale dzięki swoim argumentom Owr możesz zredukować to do jednej funkcji. i możesz mieć możliwość przerywania przerwań, co jest dobre do debugowania, ale może być także przydatne na inne sposoby.
Wystarczy, że wszystkie kody zdarzeń mdiparent wskazują na jedną funkcję,
calendar.Friday += new StoreHandler(MyEvents);
calendar.Saturday += new StoreHandler(MyEvents);
calendar.Sunday += new StoreHandler(MyEvents);
calendar.PayDay += new StoreHandler(MyEvents);
calendar.NewYear += new StoreHandler(MyEvents);
Zwykły mechanizm przełączania zwykle wystarcza, aby przekazać zdarzenia do odpowiednich formularzy.