Im developing an application in Vb.Net 3.5 under WPF.I need to implement the date picker in it.How can i get that control in WPF.How can i implement in XAML. It says that DatetimePicker and Calendar are not supported.
I tried installing - Syncfusion.SfGrid.WPF nugget but again it can't because it is not supported. Does anyone know what to do.
And apperantly we can't add any nugget package to the program. Thank you!
Related
I am using visual studio 2008.
I am learning WPF.
I want to have a Masked TextBox or DatePicker in WPF.
But I don't find them in toolbox.
I have tried to Reset the toolbox but still cant find it.
I have also tried to choose control from .NET Library but there also no control found named DatePicker for WPF.
The WPF 1.0 does not provide such controls.
I highly recommend you the WPF Toolkit.
I am going to start work on new project in which i am using DevExpress controls with winform applicaiton.
I want to do Coded UI test for winforms application and DevExpress controls.
I have VS 2010 Ultimate and DevExpress Controls 12.2 version(latest version).
In one of my example, i have created winform with GridControl of DevExpress.XtraGrid. when i create Coded UI test for this Grid Control, It's not working.
I mean it does not support it.
Can anyone give me solution/example/tutorial to do Coded UI for DevExpress controls in winforms.
Thanks !!
Refer: DevExpress Releases DXperience 12.1 with Coded UI Support and this.
Here you will get few videos that help you to understand about grid control and others also.
You can also go through Coded UI Test Extension for 3rd party
controls - the basics explained article of MSDN and documentation Verifying Code by Using Coded User Interface Tests.
More References:
DevExpress 2012 GridControl Coded-ui-tests issue
Ok for starters, ditch VS2010 and upgrade to VS2013 (Including latest update). If you don't do this - stop reading.
Next thing is versioning
To get reliable record and playback you will need to have the exact same version of DevExpess installed on your VS2013 Premium development box that your application under test uses.
So for example, if your app under test uses DevExpress 14.1.8 - INSTALL THAT VERSION in your coded ui dev environment. If you don't get the versioning exactly right - then it simply won't work.
Once you have that setup, create a new coded ui test project, and you should automatically get a DevExpress coded ui extension dll added.
Now fire up your application under test. Inside Visual Studio you will most likely get a sample test method, after creating the project. Set focus somewhere inside the test method, and then start the coded ui recorder. Now you should be able to identify controls and interact with them using the recorder. Save your actions / control identifications off to the UI map using the Generate Code in the recorder.
This should give you a good place to start with. If you really want my help, then you can send me a PM and I can share a lot of information that is beyond the scope of this. I'm on skype too and have made a lot of progress in the time I've spent specifically testing DevExpress based WinForms.
I can also share with you some helpful wrapped controls that wrap stuff like DXGrid to make your life tons easier.
I want to use the AutoCompleteBox in my WPF application but i cannot find it in visual studio. I have VS 2010 ultimate. I just downloaded and installed WPFToolkit.msi and ran it. When i open VS i cannot find the control. Where can i find it? Do i have to reference it somehow? I also have the .dll but i dont know if i need to put that somewhere? Thank you.
The AutoComplete textbox is a componenet which is in the Preview Quality Band in the WPF Toolkit .So it is not available is visualstudio 2010.You need to download and install the Feb 2010 release of the WpfToolkit and follow the instructions from the below SO post
WPF: AutoComplete TextBox, ...again
I am doing a small application and i need a DatePicker control, So i use the WPF toolkit datepicker. After completing my application I notice that my application exe has of size 250k and the WPFToolkit dll has a size 442k. So i am extracting the datepicker control from the toolkit by deleting the other controls from it. But it is not working for me. The application is failed when running. How can I extract the datepicker control only from the toolkit?
You can download the source code for the WPF Toolkit from Codeplex. Copy the files you need into your project and eliminate the dependency. When adding the file(s) you will find out what else you need to get your project compiling. They probably use some base classes that you eliminated.
I want to develop Error List Control present in VS.NET into my application using WPF
Help me
Thank u!!!!!!!!1
have a look at AvalonDocks
The error list in Visual Studio is essentially a DataGrid. Check out the DataGrid control in the WPF Toolkit. If you are using 4.0, DataGrid is part of the framework.