|
|
От: |
itslave
|
|
| Дата: | 20.04.16 09:17 | ||
| Оценка: | |||
S>control.Parent = anotherWindow;
S>class ComponentToWindowConnector
{
ComponentToWindowConnector(Component component, Window wnd)
{
component.Parent = wnd;
}
void Dispose()
{
component.Parent = null;
}
}