Welcome to Jonic Developer Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Categories
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged wpf
0
votes
1.6k
views
1
answer
wpf - MouseOver highlighting style returning to default after a second (Caused by Aero?)
I'd trying to style my ComboBoxes to match the rest of the UI but I'm having problems with the IsMouseOver highlighting. It highlights with the color I ... can I do to make the background color stay? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.9k
views
1
answer
wpf - Cannot convert type IEnumerable to ObservableCollection...are you missing a cast?
I'm trying to return entities where the bool "isAssy" is true: public ObservableCollection<MasterPartsList> ParentAssemblyBOM { get {return this._parentAssemblyBOM.Where( ... ...are you missing a cast?" See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.8k
views
1
answer
wpf - Merged dictionaries in the App.xaml
I have a bunch of Xaml vector icons inside a separated .xaml. I load them inside my window using this directive: <Window.Resources> <ResourceDictionary> ... I can't have multiple properties Resource... See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.7k
views
1
answer
wpf - How do I update an IValueConverter on CollectionChanged?
Here's a basic example to explain my problem. Let's say I have ObservableCollection<int> Numbers {get; set;} and an IValueConverter that returns the ... run when items are added and removed to Numbers? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.8k
views
1
answer
wpf - Bind command from Business object to View in MVVM
I populate DataGrid in WPF through MVVM. I have business object with 4 properties to create the Row and Columns in the DataGrid. <DataGrid ... not have information about items of the DataGrid? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.6k
views
1
answer
wpf - Custom styled listbox - how can I keep the style for a selected item?
I have a styled listbox. Listbox items change color when hovered over and when selected. Hover and select work fine. But when selecting an item ... "theControl" Style="{StaticResource myListBoxStyle}" /> See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.6k
views
1
answer
wpf - Binding to ViewModel.SubClass.Property (sub-property)
let's say i have a section on my screen where "current record" is edited.. so my view model has a class with all currently edited ... this notation is correct: {Binding Path=CurrentRecord.Notes} See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
2.0k
views
1
answer
wpf - Programmatically add style trigger
Can anyone please help how to programatically add the following style: <style> <style.Triggers> <Trigger Binding="{Binding CustomerId}" Value ="1"/> <setter ... Value="Red"/> </style.Triggers> </style> See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.7k
views
1
answer
wpf controls - Can I explicity show tooltip on Mouse Click event in WPF?
I am showing a Tool Tip when Mouse hovers on Help image. The xaml is given below: <Image x:Name="HelpImage" Width="16" Height="16" Grid.Row="1 ... ToolTip when user clicks on the image ? Please Help!! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.9k
views
1
answer
wpf - Can you replace characters in a textbox as you type?
We are looking for a way to make a textbox replace certain characters as a person types in it. Note, we are focusing on the control itself, not bindings, ... as you type. Hope that makes more sense now. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.5k
views
1
answer
wpf - TriState Checkbox - how to change the order of the states
I have a CheckBox in my application that is using the TriState mode. The normal behavior for this mode seems to be cycling between null, false, true. ... sure I'm missing something that should be obvious. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.6k
views
1
answer
wpf - Having TextChanged Event Fire Immediately as Text is Typed into TextBox
On a wpf TextBox that has an TextChanged event, it seems to only fires when focus is taken away from the textbox; but not as individual characters ... into the textbox, rather than when focus changes? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.7k
views
1
answer
wpf - 'Cannot find governing FrameworkElement...' warning when binding inside DataTemplates
I'm getting this warning in Visual Studio output window when binding on a SolidColorBrush property inside a DataTemplate: System.Windows.Data Error: 2 : ... on a RotateTransform object. Thanks in advance. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.8k
views
1
answer
wpf - Stick to the bottom of a StackPanel
In my window, there is a Grid that takes up 100% of the available vertical space. Inside that Grid is a StackPanel with another StackPanel and a Frame ... be a StackPanel, it can also be a DockPanel. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.5k
views
1
answer
wpf - Combo-box loses selection after collection changes
I have a WPF combo box bound to an obvserable collection (OC): <ComboBox Name="cbCombination" ItemsSource="{Binding Combinations}" SelectedIndex="0" /> ... of the combo unless the events fire. :( See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.8k
views
1
answer
wpf - How to Play Transparent background avi file in media element?
I have a video with transparent background in .avi format (Made from Adobe After Effects), but the transparent background appears black in mediaelement. Media ... my approach is wrong please let me know. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.6k
views
1
answer
wpf - How can I style a DataGridCell's content based on binding without naming that binding
I would like to create a style that makes my cell's content green if positive, red if negative or black if 0. I know about converters and bindings, but ... I can select the property I'm basing this on. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.9k
views
1
answer
wpf - How can I access a ListBox within a TabControl.ContentTemplate?
In my code behind I set the MessageBoxTabControl.ItemsSource to an Observable Collection. <TabControl x:Name="MessageBoxTabControl"> <TabControl.ContentTemplate> < ... get a reference to my ListBox? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.7k
views
1
answer
wpf - Missing "Run as Administrator" in VS Installer's Shortcut
I created a shortcut from the application .EXE in Visual Studio Installer, but the resulting shortcut did not have the option of "Run as Administrator ... as Administrator" option enabled on right-click? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.9k
views
1
answer
wpf - ListView Selected Item Style Override
I have a WPF ListView that I'm trying to apply a custom style too... primarily I want to make the background of the listview box transparent ... > </DataTemplate> </ListView.ItemTemplate> </ListView> See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.7k
views
1
answer
wpf - The calling thread cannot access this object because a different thread owns it
i have a problem whenever i Refresh the prograss bar i get the error The calling thread cannot access this object because a different thread owns it ... ); worker2.ReportProgress((int)percentageDone); };` See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.5k
views
1
answer
wpf controls - WPF Textblock translation based on reference point
Please check the attached image. I made the textblock origin to it's center by RenderTransformOrigin="0.5,0.5". Now I would like to move ... TranslateTransform, but this case I need absolute transform. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.8k
views
1
answer
wpf - Specified element is already the logical child of another element. Disconnect it first”
i have user control that contain grid and inside it there is expander the problem is when i try to open new window that uses this user control i get an ... > </GroupBox> </Grid> </Grid> </UserControl> See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.4k
views
1
answer
wpf - Selection bug for listbox where the list items are value types / structs and contain duplicates?
I turned an Horizontal ItemsControl to a Listbox so that I am able to select individual items but found that the selection was broken. Took some time ... when list items are strings (value type semantics) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.7k
views
1
answer
wpf - Binding to the "object.GetType()"?
I have an ObservableCollection<object> Let's consider we have 2 items in it : int a = 1; string str = "hey!"; My xaml file acces to it via ... in my TextBlocks is : int string Thanks for any help ! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.8k
views
1
answer
wpf - DataGridComboBoxColumn cell not displaying selected item text?
I was wondering how you get the DataGridComboBoxColumn to display the selected item text when it is not in editing mode? And ... > </DataGridComboBoxColumn.EditingElementStyle> </DataGridComboBoxColumn> See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
1.6k
views
1
answer
wpf - Change disabled listbox background to gray
I have a ListBox which I need to gray out when it's disabled. Per user request it's not enough to disable it, but it also has to appear differently ... how to accomplish my task, I'd appreciate the help. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
0
votes
2.4k
views
1
answer
wpf - Binding ObservableCollection<> to a TextBox
I have data comming back from web service in the form of a ObservableCollection<string> I want to bind the collection to a read-only TextBox so that ... ) { throw new NotImplementedException(); } } } See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
wpf
Page:
1
2
3
4
5
6
...
31
next »
Ask a question:
Welcome to Jonic Developer Community for programmer and developer-Open, Learning and Share
Just Browsing Browsing
[1] window.open新打开页面被拦截
[2] ios - Does the flag kSecAttrAccessControl has an effect on the public key when generating the key pair using SecKeyGeneratePair?
[3] pandas - How Can I switch from yahoo finance data to my excel spreadsheet?
[4] css 实现布局
[5] 使用Springboot yml配置文件的问题 Could not resolve placeholder
[6] Spark Scala: functional difference in notation using $?
[7] react 打包上线 { children } 里面组件没有渲染 ?
[8] vue达到什么水平才能封装组件库?
[9] linux - BitBucket Configuration for cross platform usage
[10] 请问大家,javaweb中,C/S端不能直连,该如何通信呢?
548k
questions
547k
answers
4
comments
55.4k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...