> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/powershell-universal/de/apps/components/feedback/modal.md).

# Modal

Modals informieren Benutzer über eine Aufgabe und können kritische Informationen enthalten, Entscheidungen erfordern oder mehrere Aufgaben umfassen.

## Grundlagen

![](/files/7JcuWjFxwoXaKouh2Mkb)

```powershell
New-UDButton -Text 'Basic' -OnClick {
    Show-UDModal -Content {
        New-UDTypography -Text "Hello"
    }
}
```

## Vollbild

![](/files/zg3kwwip49KFQPtcGc4T)

```powershell
New-UDButton -Text 'Full Screen' -OnClick {
    Show-UDModal -Content {
        New-UDTypography -Text "Hello"
    } -Footer {
        New-UDButton -Text "Close" -OnClick { Hide-UDModal }
    }  -FullScreen
}
```

## Volle Breite

Modals mit voller Breite nehmen die gesamte Breite ein, die durch den Parameter `-MaxWidth` definiert ist.

![](/files/fmuj3lPXjVfuhnF7h5Ls)

```powershell
New-UDButton -Text 'Full Width' -OnClick {
    Show-UDModal -Content {
        New-UDTypography -Text "Hello"
    } -FullWidth -MaxWidth 'md'
}
```

## Persistent

Persistente Modals werden nicht geschlossen, wenn Sie daneben klicken. Sie müssen sie mit `Hide-UDModal` schließen.

![](/files/z7JW1KgCqtgl5HZ7IhFd)

```powershell
New-UDButton -Text 'Persistent' -OnClick {
    Show-UDModal -Content {
        New-UDTypography -Text "Hello"
    } -Footer {
        New-UDButton -Text "Close" -OnClick { Hide-UDModal }
    } -Persistent
}
```

## Ein Modal verbergen

Sie können die Schaltfläche `Hide-UDModal` verwenden, um ein aktuell angezeigtes Modal zu verbergen.

```powershell
New-UDButton -Text 'Basic' -OnClick {
    Show-UDModal -Content {
        New-UDTypography -Text "Hello"
    }
    Start-Sleep 5
    Hide-UDModal
}
```

Wenn Sie mehrere Modals öffnen, können Sie außerdem den Parameter `-All` von `Hide-UDModal` verwenden, um alle gleichzeitig zu verbergen, anstatt eines nach dem anderen.

```powershell
New-UDButton -Text 'Parent' -OnClick {
    Show-UDModal -Content {
       New-UDButton -Text 'Child' -OnClick {
          Show-UDModal -Content {
              New-UDButton -Text 'hide current' -OnClick {
                  Hide-UDModal
              }
              New-UDButton -Text 'hide all' -OnClick {
                  Hide-UDModal -All
              }
          } 
       }
    }
}
```

## Gestaltung

Sie können Module mit den Parametern `-Style`, `-HeaderStyle`, `-ContentStyle` und `-FooterStyle` gestalten. Style wird auf das gesamte Modal selbst angewendet und die einzelnen Abschnittsstile werden nur auf diese Abschnitte angewendet. Die Werte für diese Parameter sind Hashtables mit CSS-Werten.

```powershell
New-UDButton -Text 'Styling' -OnClick {
    Show-UDModal -Content {
        New-UDTypography -Text "Hello"
    } -Style @{
        backgroundColor = "red"
    }
}
```

## API

* [Show-UDModal](/powershell-universal/de/powershell-befehle/show-udmodal.md)
* [Hide-UDModal](/powershell-universal/de/powershell-befehle/hide-udmodal.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/powershell-universal/de/apps/components/feedback/modal.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
