0
votes
0answers
28 views

Window screen does show(draw) properly

My app is consisted of many windows showing up sequentially (questionnaire style: question, resolution windows). One of the windows is a resolution screen which is showing a label, image, and button. ...
0
votes
2answers
122 views

WPF VB.NET - Reference Controls in MainWindow from a Module

I want to use modules in my first WPF application, as I'm used to using them in WinForm applications I've created before. So I have this button, with a textblock inside. MainWindow.xaml: <Button ...
0
votes
1answer
96 views

VB.Net interfaces and abstract classes: wpf windows sharing common functionality

I am new to VB.Net and .Net in general. I am building a survey application with wpf windows. Many of these windows have similar functionality, and similar class members. I thought I can use Interfaces ...
0
votes
1answer
65 views

VB.Net : collection of wpf windows

I am quite new to VB.Net. I am writing a program similar to a survey. WPF windows pop-up with questions one after each other in sequential order. Now, my client asked to randomize order for some of ...
4
votes
2answers
81 views

Controlling which items leave a stackpanel's visible area

Is there a way to control which items leave the visible area of a stackpanel when resizing? Thanks UPDATE 1 I have a fixed number of buttons inside a stackpanel. When resizing the visible area of the ...
0
votes
1answer
90 views

why the culture is not getting set in my application with Thread.Current code?

I have created a localization application in WPF. I have bind the controls in the xaml like this. <Label Name="languageLabel" Content="{x:Static Resources:Resources.languageLabel}" ...
0
votes
1answer
210 views

How to know if wpf webbrowser has completed loading the page(not using Loadcomplete)

I am currently trying to use a web browser created dynamically in code to extract details in a web page, but I am unable to know when the load is complete. I know there is a .LoadCompleted event. I ...
0
votes
4answers
600 views

How to have a global Dictionary in VB.NET/WPF application to save data from different windows?

I am new to VB.NET and WPF. I am building a "Questionnaire" app. Users will be presented sequentially with different questions/tasks (windows). After they respond on each question/task and press a ...
0
votes
1answer
172 views

Create TextBlock at run time

I'm trying to create checkboxes with word wrap at runtime. The XAML for a checkbox with word wrap looks like this: <CheckBox Width="140" Height="35"> <ContentControl> ...
0
votes
2answers
80 views

Setting Triggers for Custom Properties WPF

I have created a custom button that has a boolean flag on it to say whether it is selected or not. If it is selected i want to change the background color of the button to allow the user to know what ...
-1
votes
1answer
142 views

How to pass data between pages in WPF

How to pass data between pages in WPF? Thank you!
0
votes
1answer
115 views

Datagrid height in wpf

I only want the height of my Datagrid to be the height of as many row that are returned. I don't want the greyspace below the rows. How Can I resolve this Please? Thanks <DataGrid ...
0
votes
1answer
124 views

Datetime picker does not show current year (WPF)?

I am creating a xabp application which have a datepicker control. I wanted to display the current date on it by default, and wrote the following code which worked as intended: <DatePicker ...
1
vote
1answer
746 views

Difference between Calendar & Date Picker control in WPF?

Difference between Calendar & Date Picker control in WPF? Is there any criteria of choosing the either of them? Thank you.
0
votes
0answers
191 views

In WPF how do I access a WrapPanel from CodeBehind

I have a WrapPanel defined as follows in XAML... <Page x:Class="SelectImages" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
211 views

WPF WebBrowser Control Custom Property

Ok. So I ran across a couple code examples stating that I can create a custom property for the WPF WebBrowser control, that will allow me to bind a string of html to the control for rendering. Here ...
0
votes
1answer
201 views

Hide ScriptError dialog in WPF WebBrowser

It would appear that Twitter now has some Javascript files in their authorization pages that throw some errors on the WPF WebBrowser control. Is there any way to hide these dialogs? They are really ...
0
votes
1answer
557 views

WPF Grid allow controls inside to auto size width/height

Hey all i have been trying to find examples of how to go about auto sizing the controls i have within a grid control if the users screen is larger than the default size. Currently i am unable to ...
0
votes
1answer
292 views

Delay in slider's two-way value binding causes choppy behaviour

I'm binding the value of a Slider to an integer property that represents the volume on a networked device. This network request takes a little time (usually <100 ms), and somehow causes the Slider ...
1
vote
2answers
181 views

Multicolumn autosearch user control in wpf

I need to create an Auto search control which will show the results as rows as this one http://www.devexpress.com/Products/NET/Controls/WPF/Editors/lookup-editor.xml. However, I dont need the graphics ...
1
vote
2answers
542 views

Detect Children Controls under mouse in WPF

I have a WPF ParentUserControl and some ChildUserControlA ChildUserControlB etc. (also WPF controls) The ChildUserControls are controls containing on them some other basic elements (textboxes, ...
0
votes
3answers
211 views

Inheritance and restrictions

I need a control, like a Label in WPF. But this Label should be always autosized (Width = Height = Auto) - user should not be able to modify it. Also the BorderThinkness should be always = 0. How ...
0
votes
1answer
185 views

Catching which cell changed in editable datagrid

I have an editable DataGrid in a VB WPF application. The DataGrid itself has its SourceUpdated property set to my event handler. 2 of the columns in the grid are editable and have their ...
0
votes
2answers
74 views

MulitGrid with Child Grids Contents being sized accordingly

I dont know if this has been answered but what i am trying to to do is i have a parentGrid with 3 rows, the first two are a menu strip and a toolbar, the third row is a child grid that is populated ...
0
votes
1answer
327 views

silverlight scrollviewer and canvas with h/w set. Cant get vertical bar to hide even when lots of room

Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my ...
0
votes
0answers
325 views

VB.net Wpf User control access resource image (Resource image)

This Normal image convert windows media image function Private Function Bmp2MediaImage(ByVal Resourceimage As System.Drawing.Bitmap) As System.Windows.Media.ImageSource Dim bmp As ...
1
vote
1answer
265 views

WPF Array of UserControls

I am working on a project and there are about 30 controls that I need to call and update at runtime. I have named the controls day0 - day35 (it is a calendar). Basically, at runtime, I need to call ...
1
vote
2answers
492 views

VB6 -> VB.NET … Cannot find the Canvas control in .NET

I am trying to convert some old VB6 code to VB.NET. The VB6 uses a Canvas control, simply Dim cv as Canvas I cannot for the life of me figure out how to use the Canvas control in VB.NET (using ...
1
vote
2answers
1k views

How to redirect events from a WPF UserControl to WinForm?

I have a winform with a wpf usercontrol on it (ElementHost1). The usercontrol contains only a button. How can I know when the wpf button has been clicked in my winform? How can I "redirect" the events ...
1
vote
2answers
1k views

WPF Navigation Window with more controls

I'm learning WPF, and NavigationWindow in particular. I want to add stuff to the window, like a status bar, a favorite bar, etc. Unfortunately when I try adding anything, I get an error. I'm hoping ...
2
votes
2answers
1k views

Can I use a WPF control in WinForms to achieve transparency effects?

Is it possible to use WPF in WinForms, to implement the idea used in this question. I am trying to create a semi-transparent panel.
0
votes
3answers
2k views

(WPF Datagrid) How do I determine the Column Index of an Item

How do i return the column index of an item within a WPF Datagrid, when I click on a cell I'm using Visual Studio 2010/VB.Net
1
vote
4answers
2k views

Dispose of WPF Window

I have a WPF Window that I show with Window.Show(). When I click X the form closes. But it is still in memory and the GC never comes and cleans it up. Also I do not have any refrences/handles to it. ...
0
votes
1answer
983 views

Org Chart Control/Plug-In for VB.NET WPF multitouch application

I have been working on a UI app (written in VB.NET and using WPF) which creates charts using the Microsoft Chart Control for Windows Forms. The application retrieves data periodically from a remote ...
0
votes
1answer
1k views

WPF Binding individual text boxes to an element in a collection object or array

I need to bind a textblock.text property to a single element in an observable collection, or array element, and have the text update using the INotifyPropertyChanged or INotifyCollectionChanged, ...
0
votes
1answer
524 views

Passing parameters to a subroutine from a WPF button

I have a VB.net WPF application that creates a list from a databind. For each row in the databind, it generates a textblock that displays the information from different fields in the databind. It also ...
1
vote
3answers
7k views

Creating transparent background in WPF

I have a button with a backgroun image of color white. My button is sitting on the toolbar which has a bacground color of Blue. When the button is sitting on the toolbar, the button looks white, ...
0
votes
1answer
782 views

WPF User Control is causing Out of Memory Exception

Looking for a free spell checking solution, I thought I was so smart in doing this but I guess not. I have created a windows form based application and I want the form to add a user specified amount ...
0
votes
2answers
287 views

Accessing class properties in xaml

I've currently created the class below. For some reason though I can't access the properties I've created through my xaml style. Public Class Ribbon : Inherits Button Private mpopDropdown As ...
4
votes
1answer
3k views

Static Constructor in VB .Net

I am rewriting a C# class in VB. The C# class has a static constructor in it: static Class() { ... } which, through the Call Stack, I found is called by the main window's InitializeComponent() ...
0
votes
1answer
418 views

Cloning the WPF ComboBox control: Ideas or suggestions

If have a control that acts like a record selector from a database, say, for example, customers. The control must act in certain ways allowing the user to type the name, the alias or the code of the ...
0
votes
2answers
380 views

Adding a window listener to a WPF-Window?

How can I add an window/event listener/handler to a wpf-window? I want to know, if the user wants to close the window.
0
votes
2answers
1k views

How to set FontSize of a Textblock, which is in a Viewbox

I can't set the FontSize of the Text in a TextBlock, since the TextBox is in a Viewbox. Why? <Grid Margin="35,30,35,0" ShowGridLines="False" > <Grid.ColumnDefinitions> ...
1
vote
1answer
1k views

How to rotate Items in a WPF Listbox style?

I want to make a WPF ListBox photo album for one my college projects. I need to design a DataTemplate/ListBox style so it will look like a stack jumbled of photos, i.e., the top one being the item ...