WPF: Creating Custom Item Templates Using VS2015

Visual Custom Item Template provides windows or user controls that allow us to customize any xaml layout, just like windows that come with WPF, for easy reuse. The item template I created is very simple. The window inherits from the INotifyPropertyChanged interface and implements the method. Then it defines two attribute fields. The following s ...

Posted by thegreatdanton on Sun, 09 Jun 2019 21:50:50 +0200

SaltStack Connects to Linux&Windows Machines

Setting up the Saltstack environment, we found in the process that it is very different from ansible, the functions are divided into module s and state s, which become more complex.First, you need to install master, minion, and get the fqdn of the machine because of the Zeromq used in the communication mode. This virtual machine is easy to tre ...

Posted by zack45668 on Sun, 09 Jun 2019 19:02:40 +0200

Notes-JavaWeb Learning Tour 10

Servlet The server applet runs a server-side applet, which is an interface that defines the rules that Java classes are accessed by the browser (Java classes override this interface and can be recognized by the browser (tomcat) Servlet method: Init method: Executes only once, and the init method is executed when the Servlet is first accessed ...

Posted by blunt on Sun, 09 Jun 2019 00:53:27 +0200

Beginning with JavaScript--Notes on Basic Knowledge (2)

Windows object Windows objects not only act as global scopes, but also represent browser window s. Windows objects have dual roles: they are not only an interface for accessing browser window s through js, but also a Global object specified by ECMAScript. All variables and functions declared in the global scope become attributes and met ...

Posted by maxtech on Sat, 08 Jun 2019 22:52:33 +0200

Introduction to MongoDB Rookie (1): Concepts and Additions, Deletions, Revisions, and Indexing

I. Start-up Specify - dbpath as the storage folder and start with the default port mongod.exe --dbpath c:\data\db 2. windows Adding Services To set mongodb as a windows service mongod.exe --bind_ip yourIPadress --logpath "C:\data\dbConf\mongodb.log" --logappend --dbpath "C:\data\db" --port yourPortNumber --serviceName "YourServiceName" ...

Posted by Michael Lasky on Sat, 08 Jun 2019 01:15:02 +0200

BOM objects in javascript

1.window Object All browsers support Windows objects Conceptually, an html document corresponds to a window object Functionally, control the browser window In terms of usage, window s objects do not need to be created, they are used directly 2.window object method: 2.1 alert() Show a warning box with a message and a confirmation button Exampl ...

Posted by liquidd on Thu, 06 Jun 2019 18:35:49 +0200

14.4 - Full stack Java Notes: What are the common controls for javax.swing? How to use it?

Common Basic Controlsjavax.swing.JButtonIn graphical interface programs, buttons are probably one of the most used controls. The JButton class in the javax.swing package is used to create buttons. As shown in Table 1, it is a common construction method for JButton. javax.swing.JLabelJLabel control is one of the simplest Swing components us ...

Posted by herrin on Tue, 04 Jun 2019 20:24:29 +0200

Study and Use of Elasticsearch

Study and Use of Elasticsearch 1. Use of VMware Workstation software VMware Workstation is a powerful desktop virtual computer software that provides the best solution for users to simultaneously run different operating systems on a single desktop and develop, test, and deploy new applications.VMware Workstation can simulate a complete ...

Posted by shuka79 on Tue, 04 Jun 2019 07:13:46 +0200

JavaScript Implementation of Drag and Drop Function of Netease Cloud Music Web Site Logon Window

Explain You may find that there are many websites whose login windows or login boxes can be dragged, and even their site prompt boxes can be dragged. You may be interested in the implementation of this function, so this article can help you! Specific website examples take Netease Cloud Music Web site as an example, the specific effect is as fol ...

Posted by stan801003 on Mon, 03 Jun 2019 00:29:36 +0200

Use React, Electron, Dva, Webpack, Node.js, Websocket to quickly build cross-platform applications

Electron's star tup on github is now almost as much as React-native It feels bad that webpack updates stealthily every week. It's bad that Angular updates to 8. Vue will soon come out with a new version. 5G will be ready for commercial use this year. Huawei's system will come out too. RN hasn't been updated to the first version yet. There is a ...

Posted by digitalmustache on Sun, 02 Jun 2019 19:28:51 +0200