如何禁用Windows主题uxtheme.dll替换不了和SetWindowTheme

C/windows/system32/UxTheme.dll没有被指定在Windows上运行.或者它包含错误请尝试使用原始安装媒体程序重_百度知道
C/windows/system32/UxTheme.dll没有被指定在Windows上运行.或者它包含错误请尝试使用原始安装媒体程序重
全程黑屏。
这个是主题使用的DLL文件,你是破解主题失败还是什么原因丢失了吧在别的正常的相同系统的电脑里拷贝一个到你电脑里就行了
其他类似问题
为您推荐:
其他1条回答
system32&#92,把扩展名改回dll即可,找到后用WinRAR解压出uxtheme,搜索uxtheme。第二。如果没有系统安装盘可以到网上或别的电脑上下载一个uxtheme。如果没有,考到x:\system32&#92,第一.old就是叫uxtheme.dll补丁时出现这样的情况(一些主题包);windows\system32&#92:一般都会有一个备份文件在X;文件夹下即可;windows&#92、这种补丁要在安全模式下运行.dl_文件:&#92:\文件夹下替换原有的uxtheme,那就把Windows的安装盘插入计算机,不是叫windows&#92、既然已经出问题.dll文件,第一种解决方法.下一般是安装uxtheme.dll 拷贝到
uxtheme的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁&&&&win7破解主题文件 themeservice.dll uxtheme.dll themeu.dll 32位+64位 原版+破解
win7破解主题文件 themeservice.dll uxtheme.dll themeu.dll 32位+64位 原版+破解
win7的32位和64位破解主题的3个文件,原版和破解版都有
themeservice.dll uxtheme.dll themeu.dll
主要可以修复Oracle VM VirtualBox 的虚拟机打开不了的问题。
若举报审核通过,可奖励20下载分
被举报人:
举报的资源分:
请选择类型
资源无法下载
资源无法使用
标题与实际内容不符
含有危害国家安全内容
含有反动色情等内容
含广告内容
版权问题,侵犯个人或公司的版权
*详细原因:
免积分&&极速下载60元/年(1200次)
您可能还需要
操作系统下载排行怎么破解系统主题Uxtheme.dll_百度知道
怎么破解系统主题Uxtheme.dll
我去网上查说是要破解系统主题Uxtheme.dll,也不知道这是个什么东西,但是是由桌面和图标变了我下载了一个主题,其他的都变成windowsXP的经典主题了。但是不知道怎么破解
我有更好的答案
你不必再次破解,则可以到网上下载一个主题破解文件Uxtheme,一般来说都是破解了不能安装第三方主题的,这个文件也是经过破解了的如果是GHOST版本WinXPSP3系统.dll,如果你的系统是安装版本的
其他类似问题
为您推荐:
uxtheme的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁How to Disable Windows Themes Using uxtheme.dll and SetWindowTheme - CodeProject
Sign in using
43.2K views817 downloads18 bookmarked
&3.45 (6 votes)
3.45/5 - 6 votesμ 3.45, σa 2.28 []
Rate this:
Introduction
This article explains how to disable Windows themes in a .NET application to ensure uniform appearance across all versions of Windows.
Background
A few months ago, it has come to my attention that Windows will paint forms and controls differently depending on the current Windows Theme that is active on the user's PC.
This does not end at a different window style or status bar, but actual colors painted differently. For example, Color.Silver will look much lighter in the Windows XP theme than it would in Windows Classic. Under Windows Vista, Color.Silver is almost white. Some colors disappear completely under Vista, and are painted as white.
So began my search for a way of turning off Windows themes in a .NET applications to allow for a more uniform look regardless of the developer's and the user’s PCs.
Using the code
In order to disable Windows themes, you actually need to reference a Windows API DLL uxtheme.dll and set the theme to nothing. I could not find an easier way to do this. There does not seem to by any property exposed on the application or form level that allows you to disable themes.
In order to make this process easier and to avoid pasting the same code in all of the forms in my application, I created a base form that contains the necessary code.
using System.Runtime.InteropS
using System.Windows.F
namespace DisableWindowsThemesExample
public class BaseForm : Form
[DllImport("uxtheme", ExactSpelling = true, CharSet = CharSet.Unicode)]
public extern static Int32 SetWindowTheme (IntPtr hWnd,
String textSubAppName, String textSubIdList);
public BaseForm()
SetWindowTheme(Handle, "", "");
Invalidate();
Then, you simply inherit your form from the base form, and call the base constructor. (The call to the base constructor is actually not necessary since it is implicit.)
public partial class ExampleForm : BaseForm
public ExampleForm(): base()
Furthermore, in order to disable themes for your controls, you have to set the FlatSyle of the control to System and call SetWindowTheme for that control.
rdoNonThemed.FlatStyle = FlatStyle.S
grpNonThemed.FlatStyle = FlatStyle.S
btnNonThemed.FlatStyle = FlatStyle.S
SetWindowTheme(grpNonThemed.Handle, "", "");
SetWindowTheme(rdoNonThemed.Handle, "", "");
SetWindowTheme(btnNonThemed.Handle, "", "");
Download the solution above to see a working example.
2008-May-28 - Initial version, fixed download link.
This article, along with any associated source code and files, is licensed under
Comments and Discussions
General &&
Suggestion &&
Question &&
Admin && Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
Last Updated 17 Jul 2008
Article Copyright 2008 by Adam BerentEverything else
Copyright & ,为什么我电脑主题换了后下面的任务栏会变成windows经典样式?_百度知道
为什么我电脑主题换了后下面的任务栏会变成windows经典样式?
谁能告诉我呐~/(ㄒoㄒ)/
可能是和你改的主题有关想要那个的话改回来就行了啊在下面蓝色地方右键
属性 开始菜单
选另外一个就行了啊
其他类似问题
为您推荐:
其他3条回答
我的电脑——右键属性——高级——性能设置——调整为最佳外观
如果你装的是XP sp3的操作系统问题就在SP3的补丁 破解不完美下载 安装 Vista界面仿真器 v1.8
/xptovista.exe完美模仿vista界面 不占用资源 完美应用在SP3 不需要破解补丁 还使用了vista主题UxTheme.dll 注册版UxTheme.dll 就是XP系统主题支持的核心文件,也就是它让XP无法使用第三方主题。如果你不想安装 StyleXP,那么你可以通过注册 UxTheme.dll 文件来达到目的。实际上,UxTheme.dll 注册版就是推出 StyleXP 的 TGT Soft 在爱好者的强烈要求下放出来的,Microsoft 好像也默认了这种行为,呵呵,真是难得。使用 UxTheme.dll 注册版之后,无需任何其他的软件你就可以在XP的显示属性中管理和调用第三方的主题和风格。上传附件为UxTheme.dll全能注册版,仅不支持2003SP1下载 UxTheme.dll...
我家也内样啊。
任务栏的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁

我要回帖

更多关于 uxtheme.dll win7 64 的文章

 

随机推荐