Actually, the very essence of the question is given in the title.

Is it possible to make a standard form with a similar effect?

  • WinForms or WPF? - Lightness
  • @Lightness, Role does not play. Nro prefer WinForms if possible. - Andrew

1 answer 1

It is possible through Direct2d (C ++):

ComPtr<ID2D1Effect> gaussianBlurEffect; m_d2dContext->CreateEffect(CLSID_D2D1GaussianBlur, &gaussianBlurEffect); gaussianBlurEffect->SetInput(0, bitmap); gaussianBlurEffect->SetValue(D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION, 3.0f); m_d2dContext->BeginDraw(); m_d2dContext->DrawImage(gaussianBlurEffect.Get()); m_d2dContext->EndDraw();