windows-8.1

Oracle.DataAccess not available for selection in Visual Studio 2013

試著忘記壹切 提交于 2019-12-17 16:49:37
问题 I've recently set up a Windows 8.1 64 Bit Machine with Visual Studio 2013 (probably 32 bit, at least it installed itself at Program Files (x86)). I've also installed the Oracle 11.2.0.1 64 Bit Client with Oracle Data Provider for .NET. When I do gacutil /l | findstr Oracle.DataAccess, I get four entries, including the following: Oracle.DataAccess, Version=2.112.1.0, ..., processorArchitecture=AMD64 However, I cannot find Oracle.DataAccess in any of the lists when trying to add an assembly

How can we check if the current OS is win8 or blue

蓝咒 提交于 2019-12-17 16:44:18
问题 Win8.1 and Win8 has the same OS Version. How can we check if the current OS is Win8 or Blue? The Environment.OSVersion is giving us the same results: Environment.OSVersion 6.2.9200.0 Environment.OSVersion.Version 6.2.9200.0 Environment.OSVersion.Version.Major 6 Environment.OSVersion.Version.Minor 2 回答1: Windows 8.1 will lie to you and tell you it is Window 8. Changing that lie requires editing the manifest that is embedded in your program so that Windows knows you don't want to be lied to.

Declaring high DPI awareness per window on Windows 8

时光怂恿深爱的人放手 提交于 2019-12-17 16:26:50
问题 I'm developing audio plugins that run within a host such as Cubase, and I'm looking to add High DPI support. This is problematic because all host applications that I know of declare themselves as non-high DPI aware, so all windows are scaled automatically by the DWM. I'm looking for a way to turn off DWM DPI scaling for the plugin window, even if the host itself is not DPI-aware (so it uses DWM DPI scaling for all other windows). Does anyone know if this is possible at all? For applications

Eclipse interface icons very small on high resolution screen in Windows 8.1

大憨熊 提交于 2019-12-17 03:25:30
问题 The various icons and buttons in the Eclipse (Kepler) interface are very, very small on a laptop with a 3200x1800px screen. The red error decoration that appears to indicate errors on files is difficult to see unless my nose a few cm from the screen. I've played around with adjusting the screen resolution and other settings in the operating system (Windows 8.1), which helps, but results in other applications appearing too large, and even then the Eclipse icons are uncomfortably small.

UWP Based project, WebView with DOM Explorer

巧了我就是萌 提交于 2019-12-14 04:03:45
问题 I was wondering if there's such a library or if anyone could give me hints on how to implement something like this. What I want exactly is the functionality of DOM Explorer (to be more specific, when you are on any browser and hit F12 window with DOM Explorer pops where you can look through various aspects of HTML and CSS). I want to know if it would be possible to create this function for WebView and if so, any example would be appreciated. Note: I am working on Visual Studio 2015, WinRT

Activate a textbox automatically when user starts typing

*爱你&永不变心* 提交于 2019-12-13 19:45:36
问题 I want to activate a textbox when users starts typing in my Windows 8.1 Store app. I tried handling KeyDown event of Page , something like this code: private void pageRoot_KeyDown(object sender, KeyRoutedEventArgs e) { if (SearchBox.FocusState == Windows.UI.Xaml.FocusState.Unfocused) { string pressedKey = e.Key.ToString(); SearchBox.Text = pressedKey; SearchBox.Focus(Windows.UI.Xaml.FocusState.Keyboard); } } But the problem is e.Key.ToString() always returns capital english character of the

Navigate from extended splash screen when app is loaded

时间秒杀一切 提交于 2019-12-13 19:34:28
问题 I am pulling data from a website with webview and later parse it with HtmlAgillityPack to display info on the app. Because the update of the xaml controls takes time, I wish to use the extended splash screen to delay the display of the main page until it is completely loaded and populated with information from web. My question now is how do I switch from the extended splash to the main page once this one is filled with the parsed data? 回答1: If you are resuming from a suspended state and are

Curve TextBlock in Windows 8

我是研究僧i 提交于 2019-12-13 14:23:47
问题 I want to create Curved TextBlock using XAML like: I am doing it like this : <TextBlock TextWrapping="Wrap" Text="TextBlock" FontSize="30" Height="46" Width="182" RenderTransformOrigin="0.5,0.5" HorizontalAlignment="Left" VerticalAlignment="Top" Canvas.ZIndex="-1" Foreground="White" Margin="486,125,0,0" UseLayoutRounding="False" d:LayoutRounding="Auto"> <TextBlock.Projection> <PlaneProjection RotationZ="360" /> </TextBlock.Projection> <TextBlock.RenderTransform> <CompositeTransform Rotation="

Listview applies a check to other listview items having a checkbox when page navigation is returned

久未见 提交于 2019-12-13 14:00:19
问题 I have a ListView of CheckBox controls in which a check mark is mysteriously applied to other items within the ListView when the page containing the ListView has navigation returned to it. Specifically, I apply check marks to some items within the ListView that contains roughly 300 items. I then tap a Button that invokes another app to launch, and then when I return back to my original app with the ListView and scroll down the ListView , I observe a pattern of mysteriously checked checkboxes

Style of MediaElement in Windows 8.1

限于喜欢 提交于 2019-12-13 12:14:12
问题 How can I change style of sample MediaElement : For example how can I change the background. Code: <MediaElement AudioCategory="BackgroundCapableMedia" x:Name="media" MediaEnded="Media_MediaEnded" AutoPlay="True" AreTransportControlsEnabled="True" IsMuted="False" Volume="0.5"/> 回答1: Actually you can change the colors by overriding the default colors in the App. Note this would apply now for all MediaElement controls with transport controls, but it is possible. In your App.xaml you would