I used ToggleSwitch control in windowsphone, It works fine in windowsphone7 version, takes Microsoft.Phone.Controls as a assembly reference. But in the windowsphone7.5 it asks assembly reference for ToggleSwitch control, it's not included in Microsoft.Phone.Controls. Anyone know the assembly reference for windowsphone7.5 ToggleSwitch control.
Related Questions in WINDOWS-PHONE-7
- Nvigation Windows Phone Apps
- Windows Phone 8.1 : how to Launch an Installed app From My app
- Images "sink" animation
- Canvas borders c# ( Windows Phone 7)
- DispatcherTimer and real time WP7
- Bluetooth Printer is not working in windows phone 8.1
- Getting the path of a folder on Windows Phone 7
- Socket connection disconnectd
- Windows Phone - Hyperlinks Requiring Long Press
- Can an app (Android,iOS,Windows) ask the user for permission, before downloading, to read and store their browsing history?
Related Questions in TOGGLEBUTTON
- How do I start with the tab expanded (toggle)?
- Control style of each individual ToggleButton in Windows Phone 8.1
- WP 8.1 ToggleButton Change Icon when Checked / UnChecked
- Bootstrap toggle button fires multiple change events
- Use toggle button to control sound
- Toggling menu button by Javascript
- Android : Drawable selector not updated when using back stack (fragment)
- Add a click functionality to sidebar without affecting its toggle feature
- How to Generate the ID of a Random Toggle Button, Then SetChecked(True) That Specific Toggle Button
- Groovy SwingBuilder ToggleButton StateChange
Related Questions in ASSEMBLYFILEVERSION
- Can I change AssemblyInformationalVersion on an already compiled assembly?
- ToggleSwitch not worked in windowsphone7.5
- How to determine file version of dll file in Compact Framework 3.5
- File version in AssemblyInfo.cs not reflected in Windows Explorer File Properties?
- What is the AssemblyFileVersion used for in C#?
- VB.Net - What is the difference between AssemblyFileVersion & AssemblyFileVersionAttribute and AssemblyVersion & AssemblyVersionAttribute
- CS1607: Assembly generation -- The version '1.4.0.85725' specified for the 'file version' is not in the normal 'major.minor.build.revision' format
- how to read AssemblyFileversion from assemblyinfo.cs file using groovy script
- Dynamic Versioning
- Auto Update of Assembly File Version on Build
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 ToggleSwitch control is part of the Silverlight Toolkit, and is part of the namespace
Microsoft.Phone.Controls.To enable it in your project, add a reference to the toolkit dll (or better yet, use NuGet to install it), and then reference the namespace in your XAML
(I'm sure you already know this stuff, and that the actual alias you choose isn't important as long as you use the same one when adding the control to the XAML - using "toolkit" here because that's what I normally do)
and make sure your declaration of the control in the XAML includes the namespace reference...