After the newest Facebook update for publishing news feed, it seems that it doesn't support html code (like a href) inside the new feed content anymore
But I still see feeds with click-able link inside the content, how to do that?
below are the images of the feeds that have link inside the feed content
...
I am using a Wpf TreeView, in this I can add TreeViewItems dynamically.
Is there any way to know when the tree is updated? I tried with the CollectionChanged event of the ObservableCollection that I binded with the TreeView but that didn't work.
Edit:
My code is in like this:
class Temp
{
public void Load()
{
DeriveA ...
The scenario is: In my Window, I have a TreeView, each item of this represents different user-defined types, So I have defined DataTemplate for each type. These DataTemplates are using user-controls and these usercontrols are binded with properties of user-defined types. As simple, TreeView maps a Hierarchical Data Structure of user-defi...
Hi.
I facing a problem of Filtered list view not updated.
In my application there is a custom list view which has a two text view and one image view as a row elements.
Filter works fine but my Custom list view not updated,Result show the first rows of the List.
This is my code,
abc.java file
public class abc extends ListActivity ...
I have a background thread that refreshes image on the screen every 50 ms by changing the Image.Source property. The images being loaded are in sequence. However, I see some of them being skipped on the screen. For eg, it shows frame1, 2, 3, 5, 7, 8, 10, 13... I tried to dump the images being drawn in Draw() to another screen. It appear...