Building a Construction Daily Report System with Silverlight
Interactive date grid with visual indicators
Status marking system (complete/incomplete)
Progress tracking with visual feedback
Context menu operations
Full-screen mode support
Silverlight-JavaScript Integration
The system implements bidirectional communication between Silverlight and JavaScript: ```
public class ShowPlans
{
public ShowPlans( ...
Posted on Thu, 16 Jul 2026 17:20:48 +0000 by poncho4u
Fetching Data in Silverlight Using ASP.NET Generic Handlers
Integrating WebServices or WCF into a Silverlight application often introduces significant overhead. Developers frequently encounter configuration challenges, such as updating service addresses when server IPs change or managing complex cross-domain clientaccesspolicy.xml files. While dynamic binding is an option, it still requires external con ...
Posted on Mon, 13 Jul 2026 17:06:06 +0000 by dewed
Lightweight Commanding in Silverlight 4: A 5-Step Walkthrough
The MVVM pattern becomes far more powerful once you wire up commands, yet Silverlight 4 does not ship with a built-in ICommand implementation. The snippet below shows a minimal, self-contained approach that avoids external toolkits.
Step 1 – Craft a reusable command object
Create a class that fulfills ICommand by forwarding calls to two delegat ...
Posted on Fri, 12 Jun 2026 16:30:43 +0000 by tapupartforpres
Silverlight-Based Daily Construction Schedule Report Implementation
The user interface for the Silverlight-based construction schedule report is built using XAML with a focus on dynamic grid rendering within a themed container. The layout leverages the BubbleCremeTheme from the Silverlight 4 Toolkit, requiring proper namespace declaration:
<UserControl
xmlns:toolkit="http://schemas.microsoft.com/wi ...
Posted on Tue, 09 Jun 2026 16:56:08 +0000 by Slip