Compartilhar via


Como: Incorporar um ícone em um conjunto de módulos (assembly)

You can easily integrate resources, such as icons, into your Windows Presentation Foundation (WPF) application by using the WPF Designer for Visual Studio. Use the Pack URI Scheme provided by Extensible Application Markup Language (XAML) to reference resources in your application's XAML. For more information, see Pack URIs in WPF.

ObservaçãoObservação

Caixas de diálogo e comandos de menu que você vê podem diferir das descritas na Help dependendo das suas configurações ativas ou edição. Para alterar as configurações, escolha Import and Export Settings sobre o Ferramentas menu. For more information, see Trabalhando com configurações.

To embed an icon in an assembly

  1. In Solution Explorer, right-click your project, point to Add, and then select New Folder. Name the new folder Resources.

  2. Usando o Windows Explorer, copie um arquivo. bmp a nova pasta de Recursos , por exemplo, "16.bmp de Renda azul". Tipos de arquivo suportados são bmp, dib, gif, jpg e png.

  3. In Solution Explorer, right-click the Resources folder, point to Add, and then select Existing Item.

    The Add Existing Item dialog box appears.

  4. In the Objects of type drop-down list, select All Files.

  5. Browse to the Resources folder, select the bitmap, and then click the Add button.

    The bitmap is added to the project and appears in the Resources folder.

  6. In Solution Explorer, select the bitmap.

  7. In the Properties window, make sure that Build Action is set to Resource.

To reference an icon resource

  1. Do seu aplicativoprincipal janela XAML de abrir arquivos no WPF Designer, por exemplo MainWindow. XAML.

  2. In XAML view, in the opening <Window> tag, set the Icon property to the following pack URI.

    Icon="pack://application:,,,/Resources/Blue Lace 16.bmp"
    

    O Window declaração deve parecer semelhante ao seguinte XAML.

    <Window x:Class="IconDemo.MainWindow"
        xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="300" Width="300"
        Icon="pack://application:,,,/Resources/Blue Lace 16.bmp">
        <Grid>
    
        </Grid>
    </Window>
    
  3. Criar e executar o aplicativo.

    O bitmap é exibida na principal janelado ícone.

Consulte também

Conceitos

Pack URIs in WPF

Outros recursos

Recursos (WPF)

Trabalhar com controles no criador de WPF