コード例 #1
0
ファイル: Form2.cs プロジェクト: SHH225/VideoController
 private void hideTransform()
 {
     label1.Hide(); label4.Hide(); label7.Hide();
     label2.Hide(); label5.Hide(); label8.Hide();
     label3.Hide(); label6.Hide(); label9.Hide();
     LocationX.Hide(); LocationY.Hide(); LocationZ.Hide();
     RotationRoll.Hide(); RotationYaw.Hide(); RotationPitch.Hide();
     ScaleX.Hide(); ScaleY.Hide(); ScaleZ.Hide();
 }
コード例 #2
0
ファイル: Form2.cs プロジェクト: SHH225/VideoController
        private void LocationY_MouseMove(object sender, MouseEventArgs e)
        {
            if (LocationYispress)
            {
                Point point = LocationY.PointToClient(Control.MousePosition);

                LocationY.Text = (point.X + tempLocationY).ToString();
                var Proinstance = nodeGraph2.Nodes[Member];
                if (ProType.Equals("ADD"))
                {
                }
                else
                {
                    (Proinstance.Properties[EditedPropertise] as ZDProperty_Transform).Value.Location.Y = Convert.ToSingle(LocationY.Text);
                }
            }
        }
コード例 #3
0
 public void SetLocations()
 {
     this.LocationX = RobotIcon.Location.X / March.stepWidth;
     this.LocationY = RobotIcon.Location.Y / March.stepHeight;
     foreach (Control c in RobotIcon.Controls)
     {
         if (c.Tag != null)
         {
             if (c.Tag.ToString() == "X")
             {
                 c.Text = LocationX.ToString();
             }
             if (c.Tag.ToString() == "Y")
             {
                 c.Text = LocationY.ToString();
             }
             if (c.Tag.ToString() == "Pers")
             {
                 c.Text = Perspective == 0 ? "W" : (Perspective == 90 ? "S" : (Perspective == 180 ? "E" : "N"));
             }
         }
     }
 }
コード例 #4
0
 public string GetOutputLocation()
 {
     return(LocationX.ToString() + ' ' + LocationY.ToString() + ' ' + OppWay);
 }
コード例 #5
0
        public OnlandVisualTrashAssessmentObservation ToOnlandVisualTrashAssessmentObservation()
        {
            DbGeometry locationPoint4326 = DbSpatialHelper.MakeDbGeometryFromCoordinates(LocationX.GetValueOrDefault(),
                                                                                         LocationY.GetValueOrDefault(), CoordinateSystemHelper.NAD_83_HARN_CA_ZONE_VI_SRID);

            var locationPoint2771 =
                CoordinateSystemHelper.ProjectWebMercatorToCaliforniaStatePlaneVI(locationPoint4326);

            return(new OnlandVisualTrashAssessmentObservation(OnlandVisualTrashAssessmentObservationID,
                                                              OnlandVisualTrashAssessmentID, locationPoint2771, Note, ObservationDateTime, locationPoint4326));
        }
コード例 #6
0
        public string getInsertSQL()
        {
            String sqlString = "INSERT into board_param (name,controltype,linkkind,linkindex,locationx,locationy,text,basecolor,visible,editable,level,parentid)" +
                               "VALUES('{0}', '{1}', '{2}', {3}, {4}, {5}, '{6}', '{7}', '{8}', '{9}', {10}, {11}) ";

            return(String.Format(sqlString, ControlName, ControlType, LinkKind, LinkIndex.ToString(), LocationX.ToString(), LocationY.ToString(), ShowText, BaseColor, Visible, Editable, level.ToString(), ParentId.ToString()));
        }
コード例 #7
0
        public string getUpdateSQL()
        {
            String sqlString = "update board_param set linkkind = '{0}',linkindex = {1},locationx = {2},locationy = {3},text = '{4}',basecolor = '{5}',visible = '{6}'," +
                               "editable = '{7}',level = {8},parentid = {9} where id = {10}";

            return(String.Format(sqlString, LinkKind, LinkIndex.ToString(), LocationX.ToString(), LocationY.ToString(), ShowText, BaseColor, Visible, Editable, level.ToString(), ParentId.ToString(), id.ToString()));
        }