No problem with your English - I understood your task properly.
As I said, you can solve your problem by attaching the AFM in code after the WinForms Designer's code has been executed.
In the case of the classic brand new WinForms application the solution can look like this:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
iGAutoFilterManager1.Grid = iGrid1;
}
private void iGAutoFilterManager1_CreateColAutoFilter(object sender, TenTec.Windows.iGridLib.Filtering.iGCreateColAutoFilterEventArgs e)
{
e.DoDefault = (e.ColIndex != 2);
}
}
You can even assign the event handler method in the Property Editor - just don't assign the Grid property there.