Windows Presentation Foundation, or WPF, is a subsystem for rendering user interfaces in Windows-based applications.
0
votes
0answers
13 views
How to hide labels at runtime
I have data template which has some labels,what i want to do is to hide some of the labels at runtime depending upon the configuration settings.
I have binded the visibility of the labels to a ...
0
votes
0answers
11 views
WPF: Comboboxes and onselect Item Propery
I have a WPF Application with two comboboxes.When I select the first one the items related to the first combobox will be populated on the second one
Here is my select Property
private ...
-1
votes
1answer
12 views
WPF: Cannot convert lambda expression to type 'string' because it is not a delegate type
I am working on WPF application.
I want to display my treeview only when I select item from combobox.
Here is my combobox select property
public string SelectedTransactionName
{
...
0
votes
2answers
23 views
WPF - How can I bind multiple datagrids source using MVVM?
Let me show u a simple problem with a solution, and then a more complex problem without a solution.
1) Imagine that I have a Shelf, which has a list of Products. I want to display a datagrid with the ...
0
votes
0answers
15 views
How to post google plus feed with google api?
I want to post on my own google plus feed with sharing public
Is this possible with google plus API ? If so how can i do it with using c# ?
The application will net 4.5 C# WPF
0
votes
1answer
21 views
WPF application starting process with WaitForExit on UI thread
I have a strange situation when my WPF application executes WINWORD process and wait for it to finish (method WaitForExit()).
Once user closes Word, there are two possibilities:
user closes Word ...
0
votes
1answer
19 views
Create/Save User Settings Dynamically
In order to save user settings in my app I am use the Settings.settings class. This is working fine for things like Username, Email, etc. The problem is that my app is a kind of multi app application ...
0
votes
1answer
11 views
How toggle (invert) databound ListBox SelectedItems in wpf
Can loop through selected items using "SelectedItems.Count" & "SelectedItems(i)".
Can loop through all items using "Items.Count" & "Items(i)".
How best reverse IsSelected of each Items(i) when ...
0
votes
2answers
17 views
Binding a dataset/DataTable to a xaml datagrid
I want to display a datagrid in my UI. I am binding it to a dataset in my viewmodel. Here is the code:
View:
<StackPanel Orientation="Horizontal" Height="Auto" Name="stackPanel4" ...
0
votes
0answers
45 views
System.ArgumentException when reading a file into a byte array
To upload a file using a ByteArrayContent for HttpClienti'm reading a StorageFile into a byte array. The code is working without problems with images, but its noch working for files im generating ...
0
votes
0answers
15 views
The object 'Label' already has a child and cannot add ''. 'Label' can accept only one child
I am trying to use a helper class that another SO user provided me to apply stringformatting on a label. However, when I apply his solution, I get the following error :
The object 'Label' already ...
-1
votes
1answer
16 views
Show Treeview only on item select from combobox
I have a WPF application/MVVM Pattern and it has a combobox and a treeview control.
What I wanted to do is to show the treeview control only when i select an item from the combobox.
For example : I ...
0
votes
0answers
16 views
Binding a menuitem to a group
I have the following xaml to which am dynamically binding menuitems, How can i group the menuitems to use the checkable property. So that I am able to select only one menuitem at a time in a ...
0
votes
1answer
21 views
ListView displays certain images but won't display others
I'm trying to get certain images to display on the side of the scrolling item list created by ListView.
Right now I'm using the data template from ...
0
votes
1answer
40 views
WPF string to double converter
Could someone give me some hints as to what I could be doing wrong?
so I have a textblock in xaml
<TextBlock>
<TextBlock.Text>
<Binding Source="signal_graph" ...
0
votes
2answers
15 views
Controlling ALT Key with Silverlight control
We are working on a project right now that calls to have a view of the same control for both a Desktop client and the Web client. We are using WPF and Silverlight to cover both needs. On the Desktop ...
3
votes
0answers
30 views
DataGrid doing unwanted rearranging
I am having trouble with the WPF DataGrid rearranging my rows when I do not want it to.
Steps:
Apply grouping
Sort the DataGrid by a column with duplicates within the group
Change a cell not in ...
0
votes
0answers
17 views
Message=Cannot find resource named 'Foreground'
I am trying to add some style to my WPF application. Right now it is so plain and I wanted to give it some good look based on this ...
0
votes
1answer
16 views
Always show the calendar in WPF's date picker
I put a DatePicker control on my WPF application, but I don't want the calendar to only be visible when the icon is click, I want the calendar to always be visible.
I'd like to be able to do this ...
-1
votes
0answers
15 views
DataGridCheckBoxColumn IsReadOnly property binding
I would like to have the checkbox column in my datagrid enabled/disabled for each row depending on a value in a collection. I have an ObservableCollection called AccountComponents that is a collection ...
0
votes
1answer
23 views
WPF stop click event on MainWindow if backgroundworker on page1 is true
WPF vb.net desktop app.
I have a simple layout for testing. A MainWindow, btnMain, frame1, page1 and btnPage1.
If btnPage1 click event is busy with a background worker (which is downloading ...
3
votes
1answer
28 views
How are you meant to declare a Dependency Property?
I was reading a tutorial on how to make a parametrized style (here). In it, it uses some dependency properties. It declares them as such:
public static Brush GetTickBrush(DependencyObject obj)
{
...
0
votes
0answers
12 views
How to send selected value from datepicker in resource dictionary to dependency property in a WPF?
I have a resource dictionary which has dependency property like that:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
1answer
25 views
Windows Within An App
My C# WPF application has multiple windows, which may be open at once. One of these windows is for Notifications, and must remain Topmost (or like), until it is acknowledged. The problem I am having ...
0
votes
1answer
20 views
How to overlay white text on a white background in WPF so that it is viewable
My WPF VS 2008 application is working with many different images that are assembled and displayed at runtime. I would like to display some white text on top of those images. My problem is that some ...
0
votes
1answer
43 views
WPF CanExecute Constantly Requerying
I have a property IEnumerable<MyObject> MyObjects in a ViewModel. I want a certain command in a second view model (that references the first) to be executable when MyObjects is populated with ...
1
vote
1answer
27 views
In WPF I can't see whats wrong with my C# Storyboard and DoubleAnimation
Im attempting to create a storyboard in C# not XAML to control scaling of an image, so i can easily alter the ScaleTransform.ScaleX and ScaleTransform.ScaleY values in a DoubleAnimation.
So far I ...
2
votes
0answers
14 views
How is the DataContext of a ControlTemplate set?
I am setting the ControlTemplate in a Tile control (in the Telerik TileList). It looks something like this:
<ControlTemplate TargetType="{x:Type telerik:Tile}">
<Border>
...
1
vote
1answer
20 views
WPF RichTextBox change font color inline
I've searched for a while for this solution, so now I'm posting here.
Right now I am able to change the foreground color of the whole RichTextBox:
yourRichTextBox.Foreground = Brushes.Red;
I'm ...
0
votes
0answers
18 views
Master-detail in XAML with - managing ListView selection through binding/commands whilst allowing cancellation
I'm attempting to build a WPF application for demonstration that follows the best possible MVVM practices, and I've found quickly that I'm not sure what the best practices are! :)
I have a specific ...
0
votes
1answer
29 views
Delivering SQLServer based app on client System
how can i manage connection string of an ADO.net Object model dynamically?
i have connected my application to database using Entity Framework and connection string is automatically added to ...
-1
votes
0answers
15 views
pass values from one wpf page to another
I have a three wpf pages
1) home screen page - this page calls email page
2) the email page has a address book button which in turn opens the address book page. I want to pass some email address from ...
1
vote
1answer
23 views
C# WPF - Build issues between Windows 7 & 8
Has anyone else found issues when building a .net4 C# WPF application in Windows 7 and then Windows 8 using VS2010?
For example, I have XAML TextBlocks bound to a DataContext, and when building the ...
0
votes
0answers
16 views
VisualBrush size and stretch problems
I would like to export a grid (whit all his children) to a PNG.
The problem is that some of these children are outside of the grid.
Here is my code:
VisualBrush sourceBrush = new VisualBrush(MyGrid);
...
1
vote
1answer
18 views
DataTemplate Namespace Not Found
I have the following xaml code which is trying to reference the DataTemplate Selector below. However I am getting a namespace error. I have tried the following variations to try to import the Selector ...
0
votes
1answer
17 views
After DragDrop.DoDragDrop other controls with in the grids are not able to select(not responding)
I am working on drag and drop functionality with xamdatagrid.I have implemented the drag & drop functionality as mentioned below.
1) I have created a ...
0
votes
1answer
18 views
Error starting the Click Once xbap application
I'm trying to publish a ClickOnce WPF Browser application to a IIS server.
Currently, everything is set and I can reach the website from all computers in the local network. However, after pressing ...
0
votes
1answer
22 views
WPF MVVM DataGrid/Map
Ok, so I am working on an asset tracking application that is built using wpf. The dashboard view will have a DataGrid with rows of data and a map that corresponds with the grid. I currently have it ...
0
votes
0answers
23 views
XAML DataTemplate of View ViewModel how to refer to it when using an attached behavior?
I have a WPF app with one window that has a viewmodel that hosts several user controls (with their own viewmodels) inside that main window, in a ContentControl. I set up the view models for all my ...
1
vote
2answers
45 views
Keeping ChildWindow on Top
I have a MainWindow and ChildWindow. When MainWindow is active, have focus on it or looses its focus, I'm bringing up ChildWindow to the top.
Now when I'm opening up a popup from the MainWindow, ...
2
votes
0answers
34 views
Chaining (Dependency) Properties to nested control
I have a ListBox with a GroupStyle that contains another ListBox.
Now I want to filter the Items of the nested ListBox depending on the group name of the parent ListBox.
In the code below I tried to ...
0
votes
1answer
34 views
Convert double[,] to Variant*
In my application Im trying to call a function of ATL COM class from my WPF application. ATL COM class's fucntion's parameters are like this.
[id(5)] HRESULT GetFormationZPoints([in] BSTR sLyrName, ...
0
votes
0answers
23 views
WPF DataGrid: Programatically edited cells do not update the DataContext
In my DataGrid, a user can select several cells by dragging over them. Since only the last cell in this selection stays in editing mode, he can make a change only to this cell's content.
To solve this ...
1
vote
1answer
48 views
Read C# Textblock Text Property filled using Inlines
Let us say that I have an empty Textblock :
textblock1.Text = "";
Then I only put Inlines content in it with these two statements:
textblock1.Inlines.Add(new Run() { Text = "A. ", Foreground = ...
0
votes
0answers
9 views
ScatterViewItem scalling
can I scale a ScatterViewItem in one dimention only if the other direction has reached a max value. If i set a maxHeight and maxWidth I only can scale till one of the max values is reached.
Thx
0
votes
1answer
27 views
Userinput in Textbox overwrites Databinding
I have a working OneWay DataBinding from a double CLRProperty to a Texttbox.Text. I don't use a TwoWay because not every userinput is acceptable. BTW I use an existing Command that impements the ...
0
votes
4answers
49 views
Failing to get/set custom attached property
I'm trying to create a "DropDownButton" with an icon in it, and I want to be able to set the icon source via an attached property (I found this is the (only?) way to do this). But for some reason, ...
1
vote
0answers
34 views
Out of bound error in resource dictionary
I have put my shared styles in a single resource dictionary which I include in the application. For example, in a file called GlobalStyles.xaml I have the following:
<ResourceDictionary ...
1
vote
2answers
36 views
Data not displaying in datagrid
Here is my code.
XAML :
<DataGrid AutoGenerateColumns="False" ItemsSource="{Binding }" Height="200" Name="dataGrid1" Width="200" />
cs :
SqlConnection thisConnection = new ...
0
votes
0answers
13 views
WPF Load images from selected Folders in Tab control
I Want the UserControl in which Multiple Folders can be Selected where each selected Folders contains Images,Further these selected folders must be opened as a tabItem.
Say for example i have Selected ...






