> 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/es/aplicaciones/components/feedback/modal.md).

# Modal

Los modales informan a los usuarios sobre una tarea y pueden contener información crítica, requerir decisiones o implicar varias tareas.

## Básico

![](/files/Z6YW65AyKlQy7wsnC2qJ)

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

## Pantalla completa

![](/files/7YCRF5QrXYHvvcfeScJA)

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

## Ancho completo

Los modales de ancho completo ocupan todo el ancho definido por el parámetro `-MaxWidth`.

![](/files/2AnOLrPgZuDW4W7GpzIv)

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

## Persistente

Los modales persistentes no se cierran al hacer clic fuera de ellos. Tendrá que cerrarlo con `Hide-UDModal`.

![](/files/dT4j0Jub25TtC8xtkI3m)

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

## Ocultar un modal

Puede usar el botón `Hide-UDModal` para ocultar un modal que se está mostrando actualmente.

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

Al abrir varios modales, también puede usar el parámetro `-All` de `Hide-UDModal` para ocultarlos todos en lugar de uno a uno.

```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
              }
          } 
       }
    }
}
```

## Estilos

Puede aplicar estilos a los módulos mediante los parámetros `-Style`, `-HeaderStyle`, `-ContentStyle` y `-FooterStyle`. Style se aplica a todo el modal en sí y los estilos de secciones individuales solo se aplican a esas secciones. El valor de estos parámetros son tablas hash de valores CSS.

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

## API

* [Show-UDModal](/powershell-universal/es/comandos-de-powershell/show-udmodal.md)
* [Hide-UDModal](/powershell-universal/es/comandos-de-powershell/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/es/aplicaciones/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.
