|
Hi,
Are there any good C# focused blogs and/or podcasts out there?
Thanks!
Started by Steve the Plant on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Here you go:
Visual C# Developer Center
C-sharpcorner
Csharpfriends
Hi Steve
If its just the language C#, I would recommend
c# team blogs and csharpfaq where the team posts Make sure you read Krzysztof Cwalina blog of .net framework guidelines
Visual... .
|
|
Hi,
Are there any good WPF focused blogs and/or podcasts out there?
Thanks!
Started by Steve the Plant on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Here are some:
Lester's WPF blog Josh Smith on WPF Here are some videos: http://windowsclient.net/learn/videos_wpf.aspx
Also:
The Official Microsoft WPF and Windows Forms Site
.NET Framework Developer Center
Jaime Rodriguez, a WPF Technical Evangelist... .
|
|
Is there any way I can determine the currently focused control on a web page? I wish to save the focused control before my ajax callback and restore it afterwards.
Can this be easily determined?
Thanks,
AJ
Started by AJ on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are using jQuery you can solve this with the http://plugins.jquery.com/project/focused plugin
// elm is the DOM Element owning the focus or null if no // DOM Element has the focus var elm.
|
Ask your Facebook Friends
|
Normal OSX applications eat the first mouse click when not focused to first focus the application. Then future clicks are processed by the application. iTunes play/pause button and Finder behave differently, the first click is acted on even when not focused...
Answer Snippets (Read the full thread at stackoverflow):
And its worth.
Responding to the first mouse click when not focused is called 'click through'.
|
|
I have this custom layout:
- LinearLayout - FrameLayout - ImageView - TextView
This layout reacts to click events (using LinearLayout.setOnClickListener() ) and is made focusable using android:focusable="true" in the layout XML file. This all works fine...
Started by Felix on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Then, when it gets the focus, the background.
Something else for the android:focused="true" case.
|
|
WPF's ItemsControl will display a focus rectangle when it thinks it has focus and the user presses Tab or Alt.
But I recently had an ItemsControl display a focus rectangle even though it did not have focus -- one of its parents did. The ItemsControl was...
Started by Joe White on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There may be some other info out there that gives more details the itemscontrol and then click somewhere... .
My understanding is that the focus is inherited from the parent control for info on focus and itemscontrol, etc.
I think this is by design.
|
|
I have some <input> s on my form, and I would like to watermark them with field labels. There are already myriad watermarking plugins, but best as I can tell they all clear the watermark when the <input> is focused, even if there's nothing...
Started by Tim Sullivan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This plugin will retain the watermark when the input is focused, although it will hide on any than focus ..
|
|
I have a DB component which DataLink.UpdateRecord is called when it receives CM_EXIT message. This message is sent when it loses focus. When I click post button, it doesn't lose focus and value is not written to datasource. How can I reach an effect of...
Started by LukLed on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
That required a few extra checks to ensure we had... .
In our case we wanted to also re-focus back to the control after the save took place.
You can't make it lose focus without switching focus.
Have a look at TCustomForm.FocusControl.
|
|
I have a .net MDI application written in vb.net. I'm trying to program a form that will allow the user to select a special character such as °, µ, ², ³, ɑ and so on and have that character inserted into whatever control was focused prior to their launching...
Started by tom.dietrich on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Monitoring messages will work, I had to p/invoke GetFocus evertime a ... .
focused control", you would do this:
textBox1.GotFocus += FocusWatcher.GotFocus;
and then access FocusWatcher.FocusedControl to get the most recently-focused control.
|
|
Hello, this is a WinForms question.
In a ListBox with SelectionMode = MultiSimple, how can I get the currently focused item?
Note, I don't want to get the SelectedItem or SelectedItems, but the item which currently have the dash lines around, something...
Started by Jhonny D. Cano -Leftware- on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
ListBox.DrawMode on OwnerDrawFixed Capture the DrawItem Event and save the focus index on a field
if (e.State].ToString(), e.Font, Brushes.Black, e.Bounds, StringFormat.GenericDefault); } // If the ListBox has focus, draw a focus....
|