Alterar o papel de parede do Windows programaticamente pode ser uma tarefa interessante, especialmente em aplica\u00e7\u00f5es personalizadas ou utilit\u00e1rios de desktop. Em Delphi, isso pode ser feito utilizando a fun\u00e7\u00e3o SystemParametersInfo<\/code> da API do Windows. Neste post, vamos mostrar como voc\u00ea pode implementar essa funcionalidade.<\/p>

Dicas de Delphi<\/figcaption><\/figure><\/div>Introdu\u00e7\u00e3o<\/h4>
Para mudar o papel de parede do Windows, utilizamos a fun\u00e7\u00e3o SystemParametersInfo<\/code> com o par\u00e2metro SPI_SETDESKWALLPAPER<\/code>. Esse procedimento pode ser realizado em poucos passos simples. Vamos ver como fazer isso.<\/p>
C\u00f3digo-Fonte<\/h4>Primeiro, \u00e9 necess\u00e1rio adicionar ShellApi<\/code> \u00e0 cl\u00e1usula uses<\/code> do seu projeto Delphi.<\/p>
uses\n ShellApi, Windows;<\/code><\/pre>Abaixo est\u00e1 o c\u00f3digo para a mudan\u00e7a do papel de parede dentro do evento FormCreate<\/code> de um formul\u00e1rio.<\/p>
procedure TForm1.FormCreate(Sender: TObject);\nvar\n Arquivo: String;\nbegin\n Arquivo := 'C:\\Windows\\nuvens.bmp';\n SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, PChar(Arquivo), 0);\nend;<\/code><\/pre>Vamos analisar o c\u00f3digo para entender como ele funciona.<\/p>
Explica\u00e7\u00e3o do C\u00f3digo<\/h4>- Adicionar ShellApi e Windows \u00e0 Cl\u00e1usula Uses<\/strong><\/li><\/ol>
uses\n ShellApi, Windows;<\/code><\/pre>Esta linha adiciona ShellApi<\/code> e Windows<\/code> \u00e0 cl\u00e1usula uses<\/code>, permitindo o uso de fun\u00e7\u00f5es da API do Windows.<\/p>
Procedimento FormCreate<\/strong><\/li><\/ol> procedure TForm1.FormCreate(Sender: TObject);<\/code><\/pre>Este \u00e9 o procedimento FormCreate<\/code>, que \u00e9 chamado quando o formul\u00e1rio \u00e9 criado. Ele ser\u00e1 usado para definir o papel de parede quando o formul\u00e1rio for inicializado.<\/p>
Vari\u00e1vel para Armazenar o Caminho do Arquivo<\/strong><\/li><\/ol> var\n Arquivo: String;<\/code><\/pre>Declaramos uma vari\u00e1vel Arquivo<\/code> do tipo string para armazenar o caminho do arquivo de imagem que ser\u00e1 usado como papel de parede.<\/p>
Definir o Caminho do Arquivo<\/strong><\/li><\/ol> Arquivo := 'C:\\Windows\\nuvens.bmp';<\/code><\/pre>Aqui, definimos o caminho do arquivo de imagem. Certifique-se de que o caminho esteja correto e que a imagem exista no local especificado.<\/p>
- Chamada \u00e0 Fun\u00e7\u00e3o SystemParametersInfo<\/strong><\/li><\/ol>
SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, PChar(Arquivo), 0);<\/code><\/pre>A fun\u00e7\u00e3o SystemParametersInfo<\/code> \u00e9 chamada com os seguintes par\u00e2metros:<\/p>
SPI_SETDESKWALLPAPER<\/code> especifica que estamos definindo o papel de parede.<\/li>\n\n
O segundo par\u00e2metro \u00e9 0.<\/li>\n\n
PChar(Arquivo)<\/code> converte o caminho do arquivo para um ponteiro de caractere esperado pela fun\u00e7\u00e3o.<\/li>\n\n
O \u00faltimo par\u00e2metro \u00e9 0, que especifica que nenhuma op\u00e7\u00e3o adicional ser\u00e1 usada.<\/li><\/ul>Exemplo Pr\u00e1tico<\/h4>
Vamos ver um exemplo completo de um formul\u00e1rio Delphi que muda o papel de parede ao ser iniciado.<\/p>
unit Unit1;\n\ninterface\n\nuses\n Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,\n Dialogs, ShellApi;\n\ntype\n TForm1 = class(TForm)\n procedure FormCreate(Sender: TObject);\n private\n { Private declarations }\n public\n { Public declarations }\n end;\n\nvar\n Form1: TForm1;\n\nimplementation\n\n{$R *.dfm}\n\nprocedure TForm1.FormCreate(Sender: TObject);\nvar\n Arquivo: String;\nbegin\n Arquivo := 'C:\\Windows\\nuvens.bmp';\n SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, PChar(Arquivo), 0);\nend;\n\nend.<\/code><\/pre>Conclus\u00e3o<\/h4>
Alterar o papel de parede do Windows em Delphi \u00e9 uma tarefa simples utilizando a fun\u00e7\u00e3o SystemParametersInfo<\/code> da API do Windows. Com o c\u00f3digo fornecido, voc\u00ea pode facilmente integrar essa funcionalidade em suas aplica\u00e7\u00f5es Delphi.<\/p>
Esperamos que este tutorial tenha sido \u00fatil. Se tiver d\u00favidas ou sugest\u00f5es, deixe um coment\u00e1rio em nosso grupo do facebook!<\/p>","protected":false},"excerpt":{"rendered":"
Como Mudar o Papel de Parede do Windows Usando Delphi Alterar o papel de parede do Windows programaticamente pode ser…<\/p>\n","protected":false},"author":2,"featured_media":8923,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[9],"tags":[27,28,14],"class_list":["post-24","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-delphi","tag-delphi","tag-desenvolvimento-de-sistemas","tag-programacao"],"yoast_head":"\nComo Mudar o Papel de Parede do Windows Usando Delphi<\/title>\n<meta name=\"description\" content=\"Aprenda como mudar o papel de parede do Windows usando Delphi. Tutorial com exemplos pr\u00e1ticos e explica\u00e7\u00f5es detalhadas.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como Mudar o Papel de Parede do Windows Usando Delphi\" \/>\n<meta property=\"og:description\" content=\"Aprenda como mudar o papel de parede do Windows usando Delphi. Tutorial com exemplos pr\u00e1ticos e explica\u00e7\u00f5es detalhadas.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"WebMundi.com\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/webmundi.net\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/webmundi.net\" \/>\n<meta property=\"article:published_time\" content=\"2007-08-28T16:36:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-18T20:47:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"579\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Renato Sanches\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/twitter.com\/webmundi_com\" \/>\n<meta name=\"twitter:site\" content=\"@webmundi_com\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Renato Sanches\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Renato Sanches\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\"\n\t },\n\t \"headline\": \"Como Mudar o Papel de Parede do Windows Usando Delphi\",\n\t \"datePublished\": \"2007-08-28T16:36:00+00:00\",\n\t \"dateModified\": \"2024-07-18T20:47:11+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\"\n\t },\n\t \"wordCount\": 392,\n\t \"commentCount\": 0,\n\t \"publisher\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png\",\n\t \"keywords\": [\n\t \"Delphi\",\n\t \"Desenvolvimento de sistemas\",\n\t \"Programa\u00e7\u00e3o\"\n\t ],\n\t \"articleSection\": [\n\t \"Delphi\"\n\t ],\n\t \"inLanguage\": \"pt-BR\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"CommentAction\",\n\t \"name\": \"Comment\",\n\t \"target\": [\n\t \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#respond\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\",\n\t \"name\": \"Como Mudar o Papel de Parede do Windows Usando Delphi\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\"\n\t },\n\t \"primaryImageOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png\",\n\t \"datePublished\": \"2007-08-28T16:36:00+00:00\",\n\t \"dateModified\": \"2024-07-18T20:47:11+00:00\",\n\t \"description\": \"Aprenda como mudar o papel de parede do Windows usando Delphi. Tutorial com exemplos pr\u00e1ticos e explica\u00e7\u00f5es detalhadas.\",\n\t \"breadcrumb\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"pt-BR\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"pt-BR\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage\",\n\t \"url\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png\",\n\t \"contentUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png\",\n\t \"width\": 600,\n\t \"height\": 579,\n\t \"caption\": \"Dicas de Delphi\"\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"https:\/\/localhost\/cmswebmundicom\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"Desenvolvimento de Software\",\n\t \"item\": \"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 3,\n\t \"name\": \"Delphi\",\n\t \"item\": \"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/delphi\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 4,\n\t \"name\": \"Como Mudar o Papel de Parede do Windows Usando Delphi\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/\",\n\t \"name\": \"WebMundi.com\",\n\t \"description\": \"Site e Canal YouTube com Dicas e Tutoriais sobre Tecnologia\",\n\t \"publisher\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"https:\/\/localhost\/cmswebmundicom\/?s={search_term_string}\"\n\t },\n\t \"query-input\": {\n\t \"@type\": \"PropertyValueSpecification\",\n\t \"valueRequired\": true,\n\t \"valueName\": \"search_term_string\"\n\t }\n\t }\n\t ],\n\t \"inLanguage\": \"pt-BR\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\",\n\t \"name\": \"Web Mundi : Tecnologia\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"pt-BR\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg\",\n\t \"contentUrl\": \"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg\",\n\t \"width\": 295,\n\t \"height\": 73,\n\t \"caption\": \"Web Mundi : Tecnologia\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/www.facebook.com\/webmundi.net\",\n\t \"https:\/\/x.com\/webmundi_com\",\n\t \"https:\/\/www.instagram.com\/webmundi\/\",\n\t \"http:\/\/www.pinterest.com\/webmundi\",\n\t \"https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og\"\n\t ]\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\",\n\t \"name\": \"Renato Sanches\",\n\t \"description\": \"Executivo Tecnologia da Informa\u00e7\u00e3o | Gerente | Projetos | Infraestrutura | Sistemas | Desenvolvimento | Banco de Dados | Fundador Web Mundi | Propriet\u00e1rio XP IT Tecnologia\",\n\t \"sameAs\": [\n\t \"http:\/\/www.webmundi.com\/\",\n\t \"http:\/\/www.facebook.com\/webmundi.net\",\n\t \"https:\/\/www.instagram.com\/webmundi\/\",\n\t \"https:\/\/www.linkedin.com\/company\/webmundi\/\",\n\t \"http:\/\/www.pinterest.com\/webmundi\",\n\t \"https:\/\/x.com\/http:\/\/twitter.com\/webmundi_com\",\n\t \"https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og\",\n\t \"http:\/\/webmundi.tumblr.com\/\"\n\t ]\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Como Mudar o Papel de Parede do Windows Usando Delphi","description":"Aprenda como mudar o papel de parede do Windows usando Delphi. Tutorial com exemplos pr\u00e1ticos e explica\u00e7\u00f5es detalhadas.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/","og_locale":"pt_BR","og_type":"article","og_title":"Como Mudar o Papel de Parede do Windows Usando Delphi","og_description":"Aprenda como mudar o papel de parede do Windows usando Delphi. Tutorial com exemplos pr\u00e1ticos e explica\u00e7\u00f5es detalhadas.","og_url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/","og_site_name":"WebMundi.com","article_publisher":"http:\/\/www.facebook.com\/webmundi.net","article_author":"http:\/\/www.facebook.com\/webmundi.net","article_published_time":"2007-08-28T16:36:00+00:00","article_modified_time":"2024-07-18T20:47:11+00:00","og_image":[{"width":600,"height":579,"url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png","type":"image\/png"}],"author":"Renato Sanches","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/twitter.com\/webmundi_com","twitter_site":"@webmundi_com","twitter_misc":{"Escrito por":"Renato Sanches","Est. tempo de leitura":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#article","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/"},"author":{"name":"Renato Sanches","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0"},"headline":"Como Mudar o Papel de Parede do Windows Usando Delphi","datePublished":"2007-08-28T16:36:00+00:00","dateModified":"2024-07-18T20:47:11+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/"},"wordCount":392,"commentCount":0,"publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png","keywords":["Delphi","Desenvolvimento de sistemas","Programa\u00e7\u00e3o"],"articleSection":["Delphi"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/","url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/","name":"Como Mudar o Papel de Parede do Windows Usando Delphi","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png","datePublished":"2007-08-28T16:36:00+00:00","dateModified":"2024-07-18T20:47:11+00:00","description":"Aprenda como mudar o papel de parede do Windows usando Delphi. Tutorial com exemplos pr\u00e1ticos e explica\u00e7\u00f5es detalhadas.","breadcrumb":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#primaryimage","url":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png","contentUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi-600x600-min.png","width":600,"height":579,"caption":"Dicas de Delphi"},{"@type":"BreadcrumbList","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/delphi\/como-mudar-o-papel-de-parede-do-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/localhost\/cmswebmundicom\/"},{"@type":"ListItem","position":2,"name":"Desenvolvimento de Software","item":"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/"},{"@type":"ListItem","position":3,"name":"Delphi","item":"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/delphi\/"},{"@type":"ListItem","position":4,"name":"Como Mudar o Papel de Parede do Windows Usando Delphi"}]},{"@type":"WebSite","@id":"https:\/\/localhost\/cmswebmundicom\/#website","url":"https:\/\/localhost\/cmswebmundicom\/","name":"WebMundi.com","description":"Site e Canal YouTube com Dicas e Tutoriais sobre Tecnologia","publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/localhost\/cmswebmundicom\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/localhost\/cmswebmundicom\/#organization","name":"Web Mundi : Tecnologia","url":"https:\/\/localhost\/cmswebmundicom\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/","url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg","contentUrl":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg","width":295,"height":73,"caption":"Web Mundi : Tecnologia"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/webmundi.net","https:\/\/x.com\/webmundi_com","https:\/\/www.instagram.com\/webmundi\/","http:\/\/www.pinterest.com\/webmundi","https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og"]},{"@type":"Person","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0","name":"Renato Sanches","description":"Executivo Tecnologia da Informa\u00e7\u00e3o | Gerente | Projetos | Infraestrutura | Sistemas | Desenvolvimento | Banco de Dados | Fundador Web Mundi | Propriet\u00e1rio XP IT Tecnologia","sameAs":["http:\/\/www.webmundi.com\/","http:\/\/www.facebook.com\/webmundi.net","https:\/\/www.instagram.com\/webmundi\/","https:\/\/www.linkedin.com\/company\/webmundi\/","http:\/\/www.pinterest.com\/webmundi","https:\/\/x.com\/http:\/\/twitter.com\/webmundi_com","https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og","http:\/\/webmundi.tumblr.com\/"]}]}},"_links":{"self":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/24","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/comments?post=24"}],"version-history":[{"count":0,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/24\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media\/8923"}],"wp:attachment":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media?parent=24"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/categories?post=24"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/tags?post=24"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}