Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / Windows Forms

Spring injection in WinForms with attributes

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
7 Apr 2009Apache3 min read 24.2K   9  
Library for injection of Spring objects in WinForms, without references to IApplicationContext or Spring.
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
using System.Windows.Forms;

namespace Spring.WinForm
{
    public partial class SpringForm : Form
    {
        public SpringForm()
        {
            InitializeComponent();
            InjectSpringAttribute.InjectObject(this);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer Teracode BA SA
Argentina Argentina
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions