Is there any way to bind a value to a textblock that is obtained from a method. For example, I pass my Person object into the HierarchicalDataTemplate, from there I can access its Weight property. Now lets say I want to get the weight in mars, I would call the InMars method that takes a parameter of int EarthWeight . Now earthweight is going to change from Person to Person, how can this parameter be set every time?
WPF Binding to a method with parameter inside HierarchicalDataTemplate
7.5k views Asked by Dested At
1
There are 1 answers
Related Questions in WPF
- WPF MessageBox Cancel checkbox check
- WPF multiple control property simultaneous changes
- ObservableCollection.CollectionChanged does not select the correct DataTemplate on ToolBar
- Telerik's WPF RadColorPicker NoColorText property not working
- How to automate UI interaction during acceptance test run
- Binding to "this.property" object in VisualStateMenager
- ContextMenu Closes Immediately
- Update ObservableCollection where the items are received from another List
- change content button with trigger
- WPF - How to highlight a combobox border when focused
Related Questions in BINDING
- Binding to "this.property" object in VisualStateMenager
- How can I bind visibility of a datagrid column on a custom wpf control?
- Ext JS 5 Data Binding Combobox
- Why am I able to bind <f:actionListener> to an arbitrary method if it's not supported by JSF?
- How do I reuse an intermediate value in chain of Haskell Either binds?
- Binding warning when scrolling horizontally in datagrid
- WPF targetinvocationexception was unhandled when try to populate ObservableCollection
- Bind the result of list.contains() method
- Binding a button to both a function and close event wpf
- Kendo nested arrays binding troubles
Related Questions in DATATEMPLATE
- ObservableCollection.CollectionChanged does not select the correct DataTemplate on ToolBar
- DataTemplate doesn't seem to be binding
- XAML DataTemplate only ever creates one instance
- Win 8 App Set text in data template
- TwoWay Binding is not working if Binding is changed from DataTrigger
- Treeview with multiple columns
- Overlapping Items in WPF ItemsControl
- Silverlight: Get first TextBox in DataTemplate
- WPF Custom Control/Control template
- Bind Button Command in ControlTemplate to SelectedItem from Element in DataTemplate
Related Questions in HIERARCHICALDATATEMPLATE
- Hierarchical-DataBinding in TreeView
- How to assign different DataTypes to a static HierarchicalDataTemplate in XAML?
- How to show nested relationship in TreeView
- WPF Complex TreeView
- What is the proper way to designate the data context and bind hierarchical data in the treeview?
- Changing vertical alignment of TreeView expander togglebutton
- Producing a hierarchy of treeview in xaml
- How to define a different style on a TreeViewItem based on Type
- WPF TreeView-How to refresh tree after adding/removing node?
- WPF Localized TreeView with HierarchicalDataTemplate
Related Questions in OBJECTDATAPROVIDER
- How do I bind a Dataset to a Datagrid with an ObjectDataProvider?
- WPF: Convert integer to bool using ObjectDataProvider
- Preview pages error caused by invalid argument in Page.Resources
- Table does not refresh
- WPF: Binding with nonstatic parameter? (newbie question)
- Using ObjectDataProvider as binding source gives SQL error
- WPF ObjectDataProvider that supports linq filtering?
- WPF Binding to a method with parameter inside HierarchicalDataTemplate
- Problem with DataTemplate and ObjectDataProvider refresh
- WPF data binding - DataGridComboBoxColumn and ObjectDataProvider
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The best way to do this is with a converter.
Then you just need to set up the binding.